src/Pure/Isar/code_unit.ML
author haftmann
Fri, 22 Feb 2008 12:01:55 +0100
changeset 26112 ac2ce7242eae
parent 25597 34860182b250
child 26239 e105d24d15c1
permissions -rw-r--r--
added further interface for reading 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
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
     5
Basic notions 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
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    10
  (*generic non-sense*)
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    11
  val bad_thm: string -> 'a
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    12
  val error_thm: (thm -> thm) -> thm -> thm
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    13
  val warning_thm: (thm -> thm) -> thm -> thm option
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    14
  val try_thm: (thm -> thm) -> thm -> thm option
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    15
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    16
  (*typ instantiations*)
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    17
  val typ_sort_inst: Sorts.algebra -> typ * sort
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    18
    -> sort Vartab.table -> sort Vartab.table
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    19
  val inst_thm: sort Vartab.table -> thm -> thm
25540
e209975d5606 added constrain_thm
haftmann
parents: 25485
diff changeset
    20
  val constrain_thm: sort -> thm -> thm
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    21
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    22
  (*constants*)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    23
  val string_of_typ: theory -> typ -> string
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    24
  val string_of_const: theory -> string -> string
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    25
  val no_args: theory -> string -> int
26112
ac2ce7242eae added further interface for reading constants
haftmann
parents: 25597
diff changeset
    26
  val check_const: theory -> term -> string
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    27
  val read_bare_const: theory -> string -> string * typ
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    28
  val read_const: theory -> string -> string
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    29
  val read_const_exprs: theory -> (string list -> string list)
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    30
    -> string list -> bool * string list
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    31
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    32
  (*constructor sets*)
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    33
  val constrset_of_consts: theory -> (string * typ) list
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    34
    -> string * ((string * sort) list * (string * typ list) list)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    35
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    36
  (*defining equations*)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    37
  val assert_rew: thm -> thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    38
  val mk_rew: thm -> thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    39
  val mk_func: thm -> thm
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    40
  val head_func: thm -> string * typ
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    41
  val expand_eta: int -> thm -> thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    42
  val rewrite_func: thm list -> thm -> thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    43
  val norm_args: thm list -> thm list 
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    44
  val norm_varnames: (string -> string) -> (string -> string) -> thm list -> thm list
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    45
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    46
  (*case certificates*)
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    47
  val case_cert: thm -> string * (int * string list)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    48
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    49
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    50
structure CodeUnit: CODE_UNIT =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    51
struct
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    52
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    53
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    54
(* auxiliary *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    55
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    56
exception BAD_THM of string;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    57
fun bad_thm msg = raise BAD_THM msg;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    58
fun error_thm f thm = f thm handle BAD_THM msg => error msg;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    59
fun warning_thm f thm = SOME (f thm) handle BAD_THM msg
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    60
  => (warning ("code generator: " ^ msg); NONE);
24624
b8383b1bbae3 distinction between regular and default code theorems
haftmann
parents: 24423
diff changeset
    61
fun try_thm f thm = SOME (f thm) handle BAD_THM _ => NONE;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    62
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    63
fun string_of_typ thy = setmp show_sorts true (Sign.string_of_typ thy);
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25540
diff changeset
    64
fun string_of_const thy c = case AxClass.inst_of_param thy c
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    65
 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
    66
  | NONE => Sign.extern_const thy c;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    67
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    68
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
    69
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    70
(* reading constants as terms and wildcards pattern *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    71
26112
ac2ce7242eae added further interface for reading constants
haftmann
parents: 25597
diff changeset
    72
fun check_bare_const thy t = case try dest_Const t
ac2ce7242eae added further interface for reading constants
haftmann
parents: 25597
diff changeset
    73
 of SOME c_ty => c_ty
ac2ce7242eae added further interface for reading constants
haftmann
parents: 25597
diff changeset
    74
  | NONE => error ("Not a constant: " ^ Sign.string_of_term thy t);
ac2ce7242eae added further interface for reading constants
haftmann
parents: 25597
diff changeset
    75
ac2ce7242eae added further interface for reading constants
haftmann
parents: 25597
diff changeset
    76
fun check_const thy = AxClass.unoverload_const thy o check_bare_const thy;
ac2ce7242eae added further interface for reading constants
haftmann
parents: 25597
diff changeset
    77
ac2ce7242eae added further interface for reading constants
haftmann
parents: 25597
diff changeset
    78
fun read_bare_const thy = check_bare_const thy o Syntax.read_term_global thy;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    79
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25540
diff changeset
    80
fun read_const thy = AxClass.unoverload_const thy o read_bare_const thy;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    81
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    82
local
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    83
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    84
fun consts_of thy some_thyname =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    85
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    86
    val this_thy = Option.map theory some_thyname |> the_default thy;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    87
    val cs = Symtab.fold (fn (c, (_, NONE)) => cons c | _ => I)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    88
      ((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
    89
    fun belongs_here thyname c =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    90
          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
    91
  in case some_thyname
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    92
   of NONE => cs
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    93
    | SOME thyname => filter (belongs_here thyname) cs
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    94
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    95
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    96
fun read_const_expr thy "*" = ([], consts_of thy NONE)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    97
  | read_const_expr thy s = if String.isSuffix ".*" s
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    98
      then ([], consts_of thy (SOME (unsuffix ".*" s)))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    99
      else ([read_const thy s], []);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   100
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   101
in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   102
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   103
fun read_const_exprs thy select exprs =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   104
  case (pairself flat o split_list o map (read_const_expr thy)) exprs
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   105
   of (consts, []) => (false, consts)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   106
    | (consts, consts') => (true, consts @ select consts');
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   107
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   108
end; (*local*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   109
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   110
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   111
(* constructor sets *)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   112
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   113
fun constrset_of_consts thy cs =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   114
  let
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   115
    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
   116
      ^ " :: " ^ string_of_typ thy ty);
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   117
    fun last_typ c_ty ty =
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   118
      let
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   119
        val frees = typ_tfrees ty;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   120
        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
   121
          handle TYPE _ => no_constr c_ty
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   122
        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
   123
        val _ = if length frees <> length vs then no_constr c_ty else ();
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   124
      in (tyco, vs) end;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   125
    fun ty_sorts (c, 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 ty_decl = (Logic.unvarifyT o Sign.the_const_type thy) c;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   128
        val (tyco, vs_decl) = last_typ (c, ty) ty_decl;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   129
        val (_, vs) = last_typ (c, ty) ty;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   130
      in ((tyco, map snd vs), (c, (map fst vs, ty_decl))) end;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   131
    fun add ((tyco', sorts'), c) ((tyco, sorts), cs) =
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   132
      let
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   133
        val _ = if tyco' <> tyco
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   134
          then error "Different type constructors in constructor set"
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   135
          else ();
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   136
        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
   137
      in ((tyco, sorts), c :: cs) end;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   138
    fun inst vs' (c, (vs, ty)) =
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   139
      let
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   140
        val the_v = the o AList.lookup (op =) (vs ~~ vs');
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   141
        val ty' = map_atyps (fn TFree (v, _) => TFree (the_v v)) ty;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   142
      in (c, (fst o strip_type) ty') end;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   143
    val c' :: cs' = map ty_sorts cs;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   144
    val ((tyco, sorts), cs'') = fold add cs' (apsnd single c');
24848
5dbbd33c3236 replaced literal 'a by Name.aT;
wenzelm
parents: 24844
diff changeset
   145
    val vs = Name.names Name.context Name.aT sorts;
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   146
    val cs''' = map (inst vs) cs'';
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   147
  in (tyco, (vs, cs''')) end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   148
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   149
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   150
(* dictionary values *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   151
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   152
fun typ_sort_inst algebra =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   153
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   154
    val inters = Sorts.inter_sort algebra;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   155
    fun match _ [] = I
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   156
      | 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
   157
      | match (Type (a, Ts)) S =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   158
          fold2 match Ts (Sorts.mg_domain algebra a S)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   159
  in uncurry match end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   160
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   161
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   162
(* making rewrite theorems *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   163
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   164
fun assert_rew thm =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   165
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   166
    val (lhs, rhs) = (Logic.dest_equals o Thm.plain_prop_of) thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   167
      handle TERM _ => bad_thm ("Not an equation: " ^ Display.string_of_thm thm)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   168
          | THM _ => bad_thm ("Not an equation: " ^ Display.string_of_thm thm);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   169
    fun vars_of t = fold_aterms
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   170
     (fn Var (v, _) => insert (op =) v
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   171
       | Free _ => bad_thm ("Illegal free variable in 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
       | _ => I) t [];
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   174
    fun tvars_of t = fold_term_types
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   175
     (fn _ => fold_atyps (fn TVar (v, _) => insert (op =) v
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   176
                          | TFree _ => bad_thm 
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   177
      ("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
   178
    val lhs_vs = vars_of lhs;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   179
    val rhs_vs = vars_of rhs;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   180
    val lhs_tvs = tvars_of lhs;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   181
    val rhs_tvs = tvars_of lhs;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   182
    val _ = if null (subtract (op =) lhs_vs rhs_vs)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   183
      then ()
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   184
      else bad_thm ("Free variables on right hand side of rewrite theorem\n"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   185
        ^ Display.string_of_thm thm);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   186
    val _ = if null (subtract (op =) lhs_tvs rhs_tvs)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   187
      then ()
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   188
      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
   189
        ^ Display.string_of_thm thm)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   190
  in thm end;
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 mk_rew 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 ctxt = ProofContext.init thy;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   196
  in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   197
    thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   198
    |> LocalDefs.meta_rewrite_rule ctxt
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   199
    |> assert_rew
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   200
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   201
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   202
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   203
(* making defining equations *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   204
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   205
fun assert_func thm =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   206
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   207
    val thy = Thm.theory_of_thm thm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   208
    val (head, args) = (strip_comb o fst o Logic.dest_equals
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   209
      o ObjectLogic.drop_judgment thy o Thm.plain_prop_of) thm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   210
    val _ = case head of Const _ => () | _ =>
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   211
      bad_thm ("Equation not headed by constant\n" ^ Display.string_of_thm thm);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   212
    val _ =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   213
      if has_duplicates (op =)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   214
        ((fold o fold_aterms) (fn Var (v, _) => cons v
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   215
          | _ => I
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   216
        ) args [])
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   217
      then bad_thm ("Duplicated variables 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
    fun check _ (Abs _) = bad_thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   221
          ("Abstraction on left hand side of equation\n"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   222
            ^ Display.string_of_thm thm)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   223
      | check 0 (Var _) = ()
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   224
      | check _ (Var _) = bad_thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   225
          ("Variable with application on left hand side of defining equation\n"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   226
            ^ Display.string_of_thm thm)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   227
      | check n (t1 $ t2) = (check (n+1) t1; check 0 t2)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   228
      | check n (Const (_, ty)) = if n <> (length o fst o strip_type) ty
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   229
          then bad_thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   230
            ("Partially applied constant on left hand side of equation\n"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   231
               ^ Display.string_of_thm thm)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   232
          else ();
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   233
    val _ = map (check 0) args;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   234
  in thm end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   235
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   236
val mk_func = assert_func o mk_rew;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   237
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   238
fun head_func thm =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   239
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   240
    val thy = Thm.theory_of_thm thm;
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   241
    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
   242
      o ObjectLogic.drop_judgment thy o Thm.plain_prop_of) thm;
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   243
  in (c, ty) end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   244
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   245
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   246
(* utilities *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   247
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   248
fun inst_thm tvars' thm =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   249
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   250
    val thy = Thm.theory_of_thm thm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   251
    val tvars = (Term.add_tvars o Thm.prop_of) thm [];
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   252
    fun mk_inst (tvar as (v, _)) = case Vartab.lookup tvars' v
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   253
     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
   254
      | NONE => NONE;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   255
    val insts = map_filter mk_inst tvars;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   256
  in Thm.instantiate (insts, []) thm end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   257
25540
e209975d5606 added constrain_thm
haftmann
parents: 25485
diff changeset
   258
fun constrain_thm sort thm =
e209975d5606 added constrain_thm
haftmann
parents: 25485
diff changeset
   259
  let
e209975d5606 added constrain_thm
haftmann
parents: 25485
diff changeset
   260
    val thy = Thm.theory_of_thm thm;
e209975d5606 added constrain_thm
haftmann
parents: 25485
diff changeset
   261
    val constrain = curry (Sorts.inter_sort (Sign.classes_of thy)) sort
e209975d5606 added constrain_thm
haftmann
parents: 25485
diff changeset
   262
    val tvars = (Term.add_tvars o Thm.prop_of) thm [];
e209975d5606 added constrain_thm
haftmann
parents: 25485
diff changeset
   263
    fun mk_inst (tvar as (v, sort)) = pairself (Thm.ctyp_of thy o TVar o pair v)
e209975d5606 added constrain_thm
haftmann
parents: 25485
diff changeset
   264
      (sort, constrain sort)
e209975d5606 added constrain_thm
haftmann
parents: 25485
diff changeset
   265
    val insts = map mk_inst tvars;
e209975d5606 added constrain_thm
haftmann
parents: 25485
diff changeset
   266
  in Thm.instantiate (insts, []) thm end;
e209975d5606 added constrain_thm
haftmann
parents: 25485
diff changeset
   267
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   268
fun expand_eta k thm =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   269
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   270
    val thy = Thm.theory_of_thm thm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   271
    val (lhs, rhs) = (Logic.dest_equals o Thm.plain_prop_of) thm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   272
    val (head, args) = strip_comb lhs;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   273
    val l = if k = ~1
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   274
      then (length o fst o strip_abs) rhs
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   275
      else Int.max (0, k - length args);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   276
    val used = Name.make_context (map (fst o fst) (Term.add_vars lhs []));
25336
haftmann
parents: 24917
diff changeset
   277
    fun get_name _ 0 = pair []
haftmann
parents: 24917
diff changeset
   278
      | get_name (Abs (v, ty, t)) k =
haftmann
parents: 24917
diff changeset
   279
          Name.variants [v]
haftmann
parents: 24917
diff changeset
   280
          ##>> get_name t (k - 1)
haftmann
parents: 24917
diff changeset
   281
          #>> (fn ([v'], vs') => (v', ty) :: vs')
haftmann
parents: 24917
diff changeset
   282
      | get_name t k = 
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   283
          let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   284
            val (tys, _) = (strip_type o fastype_of) t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   285
          in case tys
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   286
           of [] => raise TERM ("expand_eta", [t])
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   287
            | ty :: _ =>
25336
haftmann
parents: 24917
diff changeset
   288
                Name.variants [""]
haftmann
parents: 24917
diff changeset
   289
                #-> (fn [v] => get_name (t $ Var ((v, 0), ty)) (k - 1)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   290
                #>> (fn vs' => (v, ty) :: vs'))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   291
          end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   292
    val (vs, _) = get_name rhs l used;
25336
haftmann
parents: 24917
diff changeset
   293
    fun expand (v, ty) thm = Drule.fun_cong_rule thm
haftmann
parents: 24917
diff changeset
   294
      (Thm.cterm_of thy (Var ((v, 0), ty)));
24219
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
    thm
25336
haftmann
parents: 24917
diff changeset
   297
    |> fold expand vs
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   298
    |> 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
25336
haftmann
parents: 24917
diff changeset
   301
fun func_conv conv =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   302
  let
25336
haftmann
parents: 24917
diff changeset
   303
    fun lhs_conv ct = if can Thm.dest_comb ct
haftmann
parents: 24917
diff changeset
   304
      then (Conv.combination_conv lhs_conv conv) ct
haftmann
parents: 24917
diff changeset
   305
      else Conv.all_conv ct;
haftmann
parents: 24917
diff changeset
   306
  in Conv.combination_conv (Conv.arg_conv lhs_conv) conv end;
haftmann
parents: 24917
diff changeset
   307
haftmann
parents: 24917
diff changeset
   308
val rewrite_func = Conv.fconv_rule o func_conv o MetaSimplifier.rewrite false;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   309
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   310
fun norm_args thms =
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 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
   313
    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
   314
  in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   315
    thms
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   316
    |> map (expand_eta k)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   317
    |> map (Conv.fconv_rule Drule.beta_eta_conversion)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   318
  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_tvars purify_tvar 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 ctyp = Thm.ctyp_of (Thm.theory_of_thm thm);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   323
    fun tvars_subst_for thm = (fold_types o fold_atyps)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   324
      (fn TVar (v_i as (v, _), sort) => let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   325
            val v' = purify_tvar 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', sort)) 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, (v', sort)) (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 ty = TVar (v_i, sort)
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, (ctyp ty, ctyp (TVar ((v', maxidx), sort))) :: 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 (tvars_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_vars 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 cterm = Thm.cterm_of (Thm.theory_of_thm thm);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   342
    fun vars_subst_for thm = fold_aterms
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   343
      (fn Var (v_i as (v, _), ty) => let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   344
            val v' = purify_var v
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   345
          in if v = v' then I
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   346
          else insert (op =) (v_i, (v', ty)) end
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   347
        | _ => I) (prop_of thm) [];
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   348
    fun mk_inst (v_i as (v, i), (v', ty)) (maxidx, acc) =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   349
      let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   350
        val t = Var (v_i, ty)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   351
      in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   352
        (maxidx + 1, (cterm t, cterm (Var ((v', maxidx), ty))) :: acc)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   353
      end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   354
    val maxidx = Thm.maxidx_of thm + 1;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   355
    val (_, inst) = fold mk_inst (vars_subst_for thm) (maxidx + 1, []);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   356
  in Thm.instantiate ([], inst) thm end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   357
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   358
fun canonical_absvars purify_var thm =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   359
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   360
    val t = Thm.plain_prop_of thm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   361
    val t' = Term.map_abs_vars purify_var t;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   362
  in Thm.rename_boundvars t t' thm end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   363
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   364
fun norm_varnames purify_tvar purify_var thms =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   365
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   366
    fun burrow_thms f [] = []
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   367
      | burrow_thms f thms =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   368
          thms
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   369
          |> Conjunction.intr_balanced
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   370
          |> f
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   371
          |> Conjunction.elim_balanced (length thms)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   372
  in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   373
    thms
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   374
    |> burrow_thms (canonical_tvars purify_tvar)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   375
    |> map (canonical_vars purify_var)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   376
    |> map (canonical_absvars purify_var)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   377
    |> map Drule.zero_var_indexes
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   378
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   379
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   380
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   381
(* case cerificates *)
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   382
24917
haftmann
parents: 24848
diff changeset
   383
fun case_certificate thm =
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   384
  let
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   385
    val thy = Thm.theory_of_thm thm;
24917
haftmann
parents: 24848
diff changeset
   386
    val ((head, raw_case_expr), cases) = (apfst Logic.dest_equals
haftmann
parents: 24848
diff changeset
   387
      o apsnd Logic.dest_conjunctions o Logic.dest_implies o Thm.prop_of) thm;
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   388
    val _ = case head of Free _ => true
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   389
      | Var _ => true
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   390
      | _ => raise TERM ("case_cert", []);
24917
haftmann
parents: 24848
diff changeset
   391
    val ([(case_var, _)], case_expr) = Term.strip_abs_eta 1 raw_case_expr;
haftmann
parents: 24848
diff changeset
   392
    val (Const (case_const, _), raw_params) = strip_comb case_expr;
haftmann
parents: 24848
diff changeset
   393
    val n = find_index (fn Free (v, _) => v = case_var | _ => false) raw_params;
haftmann
parents: 24848
diff changeset
   394
    val _ = if n = ~1 then raise TERM ("case_cert", []) else ();
haftmann
parents: 24848
diff changeset
   395
    val params = map (fst o dest_Var) (nth_drop n raw_params);
haftmann
parents: 24848
diff changeset
   396
    fun dest_case t =
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   397
      let
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   398
        val (head' $ t_co, rhs) = Logic.dest_equals t;
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   399
        val _ = if head' = head then () else raise TERM ("case_cert", []);
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   400
        val (Const (co, _), args) = strip_comb t_co;
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   401
        val (Var (param, _), args') = strip_comb rhs;
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   402
        val _ = if args' = args then () else raise TERM ("case_cert", []);
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   403
      in (param, co) end;
24917
haftmann
parents: 24848
diff changeset
   404
    fun analyze_cases cases =
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   405
      let
24917
haftmann
parents: 24848
diff changeset
   406
        val co_list = fold (AList.update (op =) o dest_case) cases [];
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   407
      in map (the o AList.lookup (op =) co_list) params end;
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   408
    fun analyze_let t =
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   409
      let
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   410
        val (head' $ arg, Var (param', _) $ arg') = Logic.dest_equals t;
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   411
        val _ = if head' = head then () else raise TERM ("case_cert", []);
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   412
        val _ = if arg' = arg then () else raise TERM ("case_cert", []);
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   413
        val _ = if [param'] = params then () else raise TERM ("case_cert", []);
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   414
      in [] end;
24917
haftmann
parents: 24848
diff changeset
   415
    fun analyze (cases as [let_case]) =
haftmann
parents: 24848
diff changeset
   416
          (analyze_cases cases handle Bind => analyze_let let_case)
haftmann
parents: 24848
diff changeset
   417
      | analyze cases = analyze_cases cases;
haftmann
parents: 24848
diff changeset
   418
  in (case_const, (n, analyze cases)) end;
haftmann
parents: 24848
diff changeset
   419
haftmann
parents: 24848
diff changeset
   420
fun case_cert thm = case_certificate thm
haftmann
parents: 24848
diff changeset
   421
  handle Bind => error "bad case certificate"
haftmann
parents: 24848
diff changeset
   422
      | TERM _ => error "bad case certificate";
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   423
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   424
end;