src/Pure/Isar/code_unit.ML
author haftmann
Wed, 13 May 2009 21:22:48 +0200
changeset 31142 8f609d1e7002
parent 31138 a51ce445d498
permissions -rw-r--r--
more permissive wrt. overloaded 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
    Author:     Florian Haftmann, TU Muenchen
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     3
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
     4
Basic notions of code generation.  Auxiliary.
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     5
*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     6
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     7
signature CODE_UNIT =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     8
sig
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
     9
  (*typ instantiations*)
26970
bc28e7bcb765 explicit type schemes for functions
haftmann
parents: 26939
diff changeset
    10
  val typscheme: theory -> string * typ -> (string * sort) list * typ
28423
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
    11
  val inst_thm: theory -> sort Vartab.table -> thm -> thm
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    12
26747
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
    13
  (*constant aliasses*)
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    14
  val add_const_alias: thm -> theory -> theory
28346
b8390cd56b8f discontinued special treatment of op = vs. eq_class.eq
haftmann
parents: 28310
diff changeset
    15
  val triv_classes: theory -> class list
26747
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
    16
  val resubst_alias: theory -> string -> string
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
    17
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
    18
  (*constants*)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    19
  val string_of_typ: theory -> typ -> string
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    20
  val string_of_const: theory -> string -> string
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    21
  val no_args: theory -> string -> int
26112
ac2ce7242eae added further interface for reading constants
haftmann
parents: 25597
diff changeset
    22
  val check_const: theory -> term -> string
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    23
  val read_bare_const: theory -> string -> string * typ
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    24
  val read_const: theory -> string -> string
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    25
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    26
  (*constructor sets*)
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    27
  val constrset_of_consts: theory -> (string * typ) list
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    28
    -> string * ((string * sort) list * (string * typ list) list)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    29
30022
1d8b8fa19074 maintain order of constructors in datatypes; clarified conventions for type schemes
haftmann
parents: 29288
diff changeset
    30
  (*code equations*)
31090
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
    31
  val mk_eqn: theory -> (string -> bool) -> thm * bool -> thm * bool
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
    32
  val mk_eqn_liberal: theory -> (string -> bool) -> thm -> (thm * bool) option
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
    33
  val assert_eqn: theory -> (string -> bool) -> thm * bool -> thm * bool
31142
8f609d1e7002 more permissive wrt. overloaded constants
haftmann
parents: 31138
diff changeset
    34
  val const_typ_eqn: thm -> string * typ
31089
11001968caae tuned interface of module Code_Unit
haftmann
parents: 31036
diff changeset
    35
  val const_eqn: theory -> thm -> string
11001968caae tuned interface of module Code_Unit
haftmann
parents: 31036
diff changeset
    36
  val typscheme_eqn: theory -> thm -> (string * sort) list * typ
28423
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
    37
  val expand_eta: theory -> int -> thm -> thm
28368
8437fb395294 clarified function transformator interface
haftmann
parents: 28346
diff changeset
    38
  val rewrite_eqn: simpset -> thm -> thm
27582
367aff8d7ffd dropped junk
haftmann
parents: 27558
diff changeset
    39
  val rewrite_head: thm list -> thm -> thm
28423
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
    40
  val norm_args: theory -> thm list -> thm list 
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30766
diff changeset
    41
  val norm_varnames: theory -> thm list -> thm list
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    42
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    43
  (*case certificates*)
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
    44
  val case_cert: thm -> string * (int * string list)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    45
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    46
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 28015
diff changeset
    47
structure Code_Unit: CODE_UNIT =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    48
struct
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    49
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    50
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    51
(* auxiliary *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    52
26939
1035c89b4c02 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26747
diff changeset
    53
fun string_of_typ thy = setmp show_sorts true (Syntax.string_of_typ_global thy);
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25540
diff changeset
    54
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
    55
 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
    56
  | NONE => Sign.extern_const thy c;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    57
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    58
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
    59
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    60
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    61
(* utilities *)
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    62
26970
bc28e7bcb765 explicit type schemes for functions
haftmann
parents: 26939
diff changeset
    63
fun typscheme thy (c, ty) =
bc28e7bcb765 explicit type schemes for functions
haftmann
parents: 26939
diff changeset
    64
  let
30022
1d8b8fa19074 maintain order of constructors in datatypes; clarified conventions for type schemes
haftmann
parents: 29288
diff changeset
    65
    val ty' = Logic.unvarifyT ty;
1d8b8fa19074 maintain order of constructors in datatypes; clarified conventions for type schemes
haftmann
parents: 29288
diff changeset
    66
    fun dest (TFree (v, sort)) = (v, sort)
26970
bc28e7bcb765 explicit type schemes for functions
haftmann
parents: 26939
diff changeset
    67
      | dest ty = error ("Illegal type parameter in type scheme: " ^ Syntax.string_of_typ_global thy ty);
30022
1d8b8fa19074 maintain order of constructors in datatypes; clarified conventions for type schemes
haftmann
parents: 29288
diff changeset
    68
    val vs = map dest (Sign.const_typargs thy (c, ty'));
1d8b8fa19074 maintain order of constructors in datatypes; clarified conventions for type schemes
haftmann
parents: 29288
diff changeset
    69
  in (vs, Type.strip_sorts ty') end;
26970
bc28e7bcb765 explicit type schemes for functions
haftmann
parents: 26939
diff changeset
    70
28423
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
    71
fun inst_thm thy tvars' thm =
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    72
  let
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    73
    val tvars = (Term.add_tvars o Thm.prop_of) thm [];
28310
e7adede08de5 corrected sort intersection
haftmann
parents: 28054
diff changeset
    74
    val inter_sort = Sorts.inter_sort (Sign.classes_of thy);
e7adede08de5 corrected sort intersection
haftmann
parents: 28054
diff changeset
    75
    fun mk_inst (tvar as (v, sort)) = case Vartab.lookup tvars' v
e7adede08de5 corrected sort intersection
haftmann
parents: 28054
diff changeset
    76
     of SOME sort' => SOME (pairself (Thm.ctyp_of thy o TVar)
e7adede08de5 corrected sort intersection
haftmann
parents: 28054
diff changeset
    77
          (tvar, (v, inter_sort (sort, sort'))))
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    78
      | NONE => NONE;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    79
    val insts = map_filter mk_inst tvars;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    80
  in Thm.instantiate (insts, []) thm end;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    81
28423
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
    82
fun expand_eta thy k thm =
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    83
  let
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    84
    val (lhs, rhs) = (Logic.dest_equals o Thm.plain_prop_of) thm;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    85
    val (head, args) = strip_comb lhs;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    86
    val l = if k = ~1
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    87
      then (length o fst o strip_abs) rhs
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    88
      else Int.max (0, k - length args);
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    89
    val used = Name.make_context (map (fst o fst) (Term.add_vars lhs []));
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    90
    fun get_name _ 0 = pair []
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    91
      | get_name (Abs (v, ty, t)) k =
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    92
          Name.variants [v]
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    93
          ##>> get_name t (k - 1)
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    94
          #>> (fn ([v'], vs') => (v', ty) :: vs')
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    95
      | get_name t k = 
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    96
          let
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    97
            val (tys, _) = (strip_type o fastype_of) t
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    98
          in case tys
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
    99
           of [] => raise TERM ("expand_eta", [t])
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   100
            | ty :: _ =>
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   101
                Name.variants [""]
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   102
                #-> (fn [v] => get_name (t $ Var ((v, 0), ty)) (k - 1)
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   103
                #>> (fn vs' => (v, ty) :: vs'))
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   104
          end;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   105
    val (vs, _) = get_name rhs l used;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   106
    fun expand (v, ty) thm = Drule.fun_cong_rule thm
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   107
      (Thm.cterm_of thy (Var ((v, 0), ty)));
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   108
  in
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   109
    thm
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   110
    |> fold expand vs
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   111
    |> Conv.fconv_rule Drule.beta_eta_conversion
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   112
  end;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   113
28368
8437fb395294 clarified function transformator interface
haftmann
parents: 28346
diff changeset
   114
fun eqn_conv conv =
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   115
  let
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   116
    fun lhs_conv ct = if can Thm.dest_comb ct
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   117
      then (Conv.combination_conv lhs_conv conv) ct
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   118
      else Conv.all_conv ct;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   119
  in Conv.combination_conv (Conv.arg_conv lhs_conv) conv end;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   120
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   121
fun head_conv conv =
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   122
  let
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   123
    fun lhs_conv ct = if can Thm.dest_comb ct
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   124
      then (Conv.fun_conv lhs_conv) ct
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   125
      else conv ct;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   126
  in Conv.fun_conv (Conv.arg_conv lhs_conv) end;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   127
28368
8437fb395294 clarified function transformator interface
haftmann
parents: 28346
diff changeset
   128
val rewrite_eqn = Conv.fconv_rule o eqn_conv o Simplifier.rewrite;
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   129
val rewrite_head = Conv.fconv_rule o head_conv o MetaSimplifier.rewrite false;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   130
28423
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
   131
fun norm_args thy thms =
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   132
  let
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   133
    val num_args_of = length o snd o strip_comb o fst o Logic.dest_equals;
28310
e7adede08de5 corrected sort intersection
haftmann
parents: 28054
diff changeset
   134
    val k = fold (curry Int.max o num_args_of o Thm.prop_of) thms 0;
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   135
  in
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   136
    thms
28423
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
   137
    |> map (expand_eta thy k)
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   138
    |> map (Conv.fconv_rule Drule.beta_eta_conversion)
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   139
  end;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   140
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30766
diff changeset
   141
fun canonical_tvars thy thm =
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   142
  let
28423
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
   143
    val ctyp = Thm.ctyp_of thy;
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30766
diff changeset
   144
    val purify_tvar = unprefix "'" #> Name.desymbolize false #> prefix "'";
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   145
    fun tvars_subst_for thm = (fold_types o fold_atyps)
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   146
      (fn TVar (v_i as (v, _), sort) => let
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   147
            val v' = purify_tvar v
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   148
          in if v = v' then I
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   149
          else insert (op =) (v_i, (v', sort)) end
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   150
        | _ => I) (prop_of thm) [];
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   151
    fun mk_inst (v_i, (v', sort)) (maxidx, acc) =
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   152
      let
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   153
        val ty = TVar (v_i, sort)
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   154
      in
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   155
        (maxidx + 1, (ctyp ty, ctyp (TVar ((v', maxidx), sort))) :: acc)
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   156
      end;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   157
    val maxidx = Thm.maxidx_of thm + 1;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   158
    val (_, inst) = fold mk_inst (tvars_subst_for thm) (maxidx + 1, []);
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   159
  in Thm.instantiate (inst, []) thm end;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   160
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30766
diff changeset
   161
fun canonical_vars thy thm =
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   162
  let
28423
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
   163
    val cterm = Thm.cterm_of thy;
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30766
diff changeset
   164
    val purify_var = Name.desymbolize false;
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   165
    fun vars_subst_for thm = fold_aterms
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   166
      (fn Var (v_i as (v, _), ty) => let
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   167
            val v' = purify_var v
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   168
          in if v = v' then I
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   169
          else insert (op =) (v_i, (v', ty)) end
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   170
        | _ => I) (prop_of thm) [];
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   171
    fun mk_inst (v_i as (v, i), (v', ty)) (maxidx, acc) =
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   172
      let
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   173
        val t = Var (v_i, ty)
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   174
      in
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   175
        (maxidx + 1, (cterm t, cterm (Var ((v', maxidx), ty))) :: acc)
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   176
      end;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   177
    val maxidx = Thm.maxidx_of thm + 1;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   178
    val (_, inst) = fold mk_inst (vars_subst_for thm) (maxidx + 1, []);
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   179
  in Thm.instantiate ([], inst) thm end;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   180
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30766
diff changeset
   181
fun canonical_absvars thm =
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   182
  let
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   183
    val t = Thm.plain_prop_of thm;
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30766
diff changeset
   184
    val purify_var = Name.desymbolize false;
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   185
    val t' = Term.map_abs_vars purify_var t;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   186
  in Thm.rename_boundvars t t' thm end;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   187
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30766
diff changeset
   188
fun norm_varnames thy thms =
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   189
  let
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   190
    fun burrow_thms f [] = []
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   191
      | burrow_thms f thms =
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   192
          thms
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   193
          |> Conjunction.intr_balanced
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   194
          |> f
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   195
          |> Conjunction.elim_balanced (length thms)
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   196
  in
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   197
    thms
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30766
diff changeset
   198
    |> map (canonical_vars thy)
64ff53fc0c0c removed code_name module
haftmann
parents: 30766
diff changeset
   199
    |> map canonical_absvars
30739
8a854c90f7e6 more convenient name uniqueness
haftmann
parents: 30688
diff changeset
   200
    |> map Drule.zero_var_indexes
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30766
diff changeset
   201
    |> burrow_thms (canonical_tvars thy)
30688
2d1d426e00e4 corrected variable renaming
haftmann
parents: 30022
diff changeset
   202
    |> Drule.zero_var_indexes_list
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   203
  end;
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   204
28346
b8390cd56b8f discontinued special treatment of op = vs. eq_class.eq
haftmann
parents: 28310
diff changeset
   205
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   206
(* const aliasses *)
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   207
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   208
structure ConstAlias = TheoryDataFun
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   209
(
26747
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   210
  type T = ((string * string) * thm) list * class list;
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   211
  val empty = ([], []);
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   212
  val copy = I;
26618
wenzelm
parents: 26610
diff changeset
   213
  val extend = I;
29288
253bcf2a5854 avoid polymorphic equality;
wenzelm
parents: 29270
diff changeset
   214
  fun merge _ ((alias1, classes1), (alias2, classes2)) : T =
26747
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   215
    (Library.merge (eq_snd Thm.eq_thm_prop) (alias1, alias2),
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   216
      Library.merge (op =) (classes1, classes2));
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   217
);
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   218
28423
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
   219
fun add_const_alias thm thy =
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   220
  let
28423
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
   221
    val lhs_rhs = case try Logic.dest_equals (Thm.prop_of thm)
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   222
     of SOME lhs_rhs => lhs_rhs
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   223
      | _ => error ("Not an equation: " ^ Display.string_of_thm thm);
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   224
    val c_c' = case try (pairself (AxClass.unoverload_const thy o dest_Const)) lhs_rhs
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   225
     of SOME c_c' => c_c'
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   226
      | _ => error ("Not an equation with two constants: " ^ Display.string_of_thm thm);
26747
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   227
    val some_class = the_list (AxClass.class_of_param thy (snd c_c'));
28423
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
   228
  in thy |>
26747
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   229
    ConstAlias.map (fn (alias, classes) =>
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   230
      ((c_c', thm) :: alias, fold (insert (op =)) some_class classes))
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   231
  end;
26354
46c7d00dd4b4 rearranged
haftmann
parents: 26330
diff changeset
   232
26747
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   233
fun resubst_alias thy =
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   234
  let
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   235
    val alias = fst (ConstAlias.get thy);
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   236
    val subst_inst_param = Option.map fst o AxClass.inst_of_param thy;
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   237
    fun subst_alias c =
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   238
      get_first (fn ((c', c''), _) => if c = c'' then SOME c' else NONE) alias;
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   239
  in
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   240
    perhaps subst_inst_param
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   241
    #> perhaps subst_alias
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   242
  end;
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   243
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   244
val triv_classes = snd o ConstAlias.get;
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26618
diff changeset
   245
28346
b8390cd56b8f discontinued special treatment of op = vs. eq_class.eq
haftmann
parents: 28310
diff changeset
   246
26610
df8c1ffdb8cc export subst_alias;
wenzelm
parents: 26519
diff changeset
   247
(* reading constants as terms *)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   248
26112
ac2ce7242eae added further interface for reading constants
haftmann
parents: 25597
diff changeset
   249
fun check_bare_const thy t = case try dest_Const t
ac2ce7242eae added further interface for reading constants
haftmann
parents: 25597
diff changeset
   250
 of SOME c_ty => c_ty
26939
1035c89b4c02 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26747
diff changeset
   251
  | NONE => error ("Not a constant: " ^ Syntax.string_of_term_global thy t);
26112
ac2ce7242eae added further interface for reading constants
haftmann
parents: 25597
diff changeset
   252
28346
b8390cd56b8f discontinued special treatment of op = vs. eq_class.eq
haftmann
parents: 28310
diff changeset
   253
fun check_const thy = AxClass.unoverload_const thy o check_bare_const thy;
26112
ac2ce7242eae added further interface for reading constants
haftmann
parents: 25597
diff changeset
   254
ac2ce7242eae added further interface for reading constants
haftmann
parents: 25597
diff changeset
   255
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
   256
28346
b8390cd56b8f discontinued special treatment of op = vs. eq_class.eq
haftmann
parents: 28310
diff changeset
   257
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
   258
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   259
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   260
(* constructor sets *)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   261
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   262
fun constrset_of_consts thy cs =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   263
  let
28704
8703d17c5e68 assert that no class parameter is used as constructor
haftmann
parents: 28423
diff changeset
   264
    val _ = map (fn (c, _) => if (is_some o AxClass.class_of_param thy) c
8703d17c5e68 assert that no class parameter is used as constructor
haftmann
parents: 28423
diff changeset
   265
      then error ("Is a class parameter: " ^ string_of_const thy c) else ()) cs;
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   266
    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
   267
      ^ " :: " ^ string_of_typ thy ty);
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   268
    fun last_typ c_ty ty =
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   269
      let
29270
0eade173f77e moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents: 28708
diff changeset
   270
        val frees = OldTerm.typ_tfrees ty;
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   271
        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
   272
          handle TYPE _ => no_constr c_ty
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   273
        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
   274
        val _ = if length frees <> length vs then no_constr c_ty else ();
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   275
      in (tyco, vs) end;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   276
    fun ty_sorts (c, ty) =
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   277
      let
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   278
        val ty_decl = (Logic.unvarifyT o Sign.the_const_type thy) c;
26970
bc28e7bcb765 explicit type schemes for functions
haftmann
parents: 26939
diff changeset
   279
        val (tyco, _) = last_typ (c, ty) ty_decl;
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   280
        val (_, vs) = last_typ (c, ty) ty;
28015
11635f41abc1 proper handling of type variabl names
haftmann
parents: 27610
diff changeset
   281
      in ((tyco, map snd vs), (c, (map fst vs, ty))) end;
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   282
    fun add ((tyco', sorts'), c) ((tyco, sorts), cs) =
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   283
      let
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   284
        val _ = if tyco' <> tyco
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   285
          then error "Different type constructors in constructor set"
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   286
          else ();
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   287
        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
   288
      in ((tyco, sorts), c :: cs) end;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   289
    fun inst vs' (c, (vs, ty)) =
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   290
      let
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   291
        val the_v = the o AList.lookup (op =) (vs ~~ vs');
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   292
        val ty' = map_atyps (fn TFree (v, _) => TFree (the_v v)) ty;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   293
      in (c, (fst o strip_type) ty') end;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   294
    val c' :: cs' = map ty_sorts cs;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   295
    val ((tyco, sorts), cs'') = fold add cs' (apsnd single c');
24848
5dbbd33c3236 replaced literal 'a by Name.aT;
wenzelm
parents: 24844
diff changeset
   296
    val vs = Name.names Name.context Name.aT sorts;
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   297
    val cs''' = map (inst vs) cs'';
30022
1d8b8fa19074 maintain order of constructors in datatypes; clarified conventions for type schemes
haftmann
parents: 29288
diff changeset
   298
  in (tyco, (vs, rev cs''')) end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   299
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   300
30022
1d8b8fa19074 maintain order of constructors in datatypes; clarified conventions for type schemes
haftmann
parents: 29288
diff changeset
   301
(* code equations *)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   302
31090
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   303
exception BAD_THM of string;
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   304
fun bad_thm msg = raise BAD_THM msg;
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   305
fun error_thm f thm = f thm handle BAD_THM msg => error msg;
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   306
fun try_thm f thm = SOME (f thm) handle BAD_THM _ => NONE;
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   307
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   308
fun is_linear thm =
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   309
  let val (_, args) = (strip_comb o fst o Logic.dest_equals o Thm.plain_prop_of) thm
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   310
  in not (has_duplicates (op =) ((fold o fold_aterms)
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   311
    (fn Var (v, _) => cons v | _ => I) args [])) end;
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   312
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   313
fun gen_assert_eqn thy is_constr_head is_constr_pat (thm, proper) =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   314
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   315
    val (lhs, rhs) = (Logic.dest_equals o Thm.plain_prop_of) thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   316
      handle TERM _ => bad_thm ("Not an equation: " ^ Display.string_of_thm thm)
31090
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   317
           | THM _ => bad_thm ("Not an equation: " ^ Display.string_of_thm thm);
30766
44561a14a4c5 corrected check for additional type variables on rhs of code equations
haftmann
parents: 30739
diff changeset
   318
    fun vars_of t = fold_aterms (fn Var (v, _) => insert (op =) v
31090
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   319
      | Free _ => bad_thm ("Illegal free variable in equation\n"
30766
44561a14a4c5 corrected check for additional type variables on rhs of code equations
haftmann
parents: 30739
diff changeset
   320
          ^ Display.string_of_thm thm)
44561a14a4c5 corrected check for additional type variables on rhs of code equations
haftmann
parents: 30739
diff changeset
   321
      | _ => I) t [];
44561a14a4c5 corrected check for additional type variables on rhs of code equations
haftmann
parents: 30739
diff changeset
   322
    fun tvars_of t = fold_term_types (fn _ =>
44561a14a4c5 corrected check for additional type variables on rhs of code equations
haftmann
parents: 30739
diff changeset
   323
      fold_atyps (fn TVar (v, _) => insert (op =) v
44561a14a4c5 corrected check for additional type variables on rhs of code equations
haftmann
parents: 30739
diff changeset
   324
        | TFree _ => bad_thm 
31090
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   325
      ("Illegal free type variable in equation\n" ^ Display.string_of_thm thm))) t [];
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   326
    val lhs_vs = vars_of lhs;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   327
    val rhs_vs = vars_of rhs;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   328
    val lhs_tvs = tvars_of lhs;
30766
44561a14a4c5 corrected check for additional type variables on rhs of code equations
haftmann
parents: 30739
diff changeset
   329
    val rhs_tvs = tvars_of rhs;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   330
    val _ = if null (subtract (op =) lhs_vs rhs_vs)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   331
      then ()
31090
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   332
      else bad_thm ("Free variables on right hand side of equation\n"
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   333
        ^ Display.string_of_thm thm);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   334
    val _ = if null (subtract (op =) lhs_tvs rhs_tvs)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   335
      then ()
31090
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   336
      else bad_thm ("Free type variables on right hand side of equation\n"
28423
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
   337
        ^ Display.string_of_thm thm)    val (head, args) = (strip_comb o fst o Logic.dest_equals o Thm.plain_prop_of) thm;
31090
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   338
    val (c, ty) = case head
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   339
     of Const (c_ty as (_, ty)) => (AxClass.unoverload_const thy c_ty, ty)
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   340
      | _ => bad_thm ("Equation not headed by constant\n" ^ Display.string_of_thm thm);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   341
    fun check _ (Abs _) = bad_thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   342
          ("Abstraction on left hand side of equation\n"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   343
            ^ Display.string_of_thm thm)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   344
      | check 0 (Var _) = ()
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   345
      | check _ (Var _) = bad_thm
31090
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   346
          ("Variable with application on left hand side of equation\n"
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   347
            ^ Display.string_of_thm thm)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   348
      | check n (t1 $ t2) = (check (n+1) t1; check 0 t2)
31092
27a6558e64b6 proper error handling for malformed code equations
haftmann
parents: 31090
diff changeset
   349
      | check n (Const (c_ty as (c, ty))) = if n = (length o fst o strip_type) ty
27a6558e64b6 proper error handling for malformed code equations
haftmann
parents: 31090
diff changeset
   350
          then if not proper orelse is_constr_pat (AxClass.unoverload_const thy c_ty)
27a6558e64b6 proper error handling for malformed code equations
haftmann
parents: 31090
diff changeset
   351
            then ()
27a6558e64b6 proper error handling for malformed code equations
haftmann
parents: 31090
diff changeset
   352
            else bad_thm (quote c ^ " is not a constructor, on left hand side of equation\n"
27a6558e64b6 proper error handling for malformed code equations
haftmann
parents: 31090
diff changeset
   353
              ^ Display.string_of_thm thm)
27a6558e64b6 proper error handling for malformed code equations
haftmann
parents: 31090
diff changeset
   354
          else bad_thm
27a6558e64b6 proper error handling for malformed code equations
haftmann
parents: 31090
diff changeset
   355
            ("Partially applied constant " ^ quote c ^ " on left hand side of equation\n"
27a6558e64b6 proper error handling for malformed code equations
haftmann
parents: 31090
diff changeset
   356
               ^ Display.string_of_thm thm);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   357
    val _ = map (check 0) args;
31090
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   358
    val _ = if not proper orelse is_linear thm then ()
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   359
      else bad_thm ("Duplicate variables on left hand side of equation\n"
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   360
        ^ Display.string_of_thm thm);
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   361
    val _ = if (is_none o AxClass.class_of_param thy) c
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   362
      then ()
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   363
      else bad_thm ("Polymorphic constant as head in equation\n"
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   364
        ^ Display.string_of_thm thm)
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   365
    val _ = if not (is_constr_head c)
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   366
      then ()
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   367
      else bad_thm ("Constructor as head in equation\n"
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   368
        ^ Display.string_of_thm thm)
28423
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
   369
    val ty_decl = Sign.the_const_type thy c;
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
   370
    val _ = if Sign.typ_equiv thy (Type.strip_sorts ty_decl, Type.strip_sorts ty)
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
   371
      then () else bad_thm ("Type\n" ^ string_of_typ thy ty
31090
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   372
           ^ "\nof equation\n"
28423
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
   373
           ^ Display.string_of_thm thm
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
   374
           ^ "\nis incompatible with declared function type\n"
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
   375
           ^ string_of_typ thy ty_decl)
31090
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   376
  in (thm, proper) end;
28423
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
   377
31092
27a6558e64b6 proper error handling for malformed code equations
haftmann
parents: 31090
diff changeset
   378
fun assert_eqn thy is_constr = error_thm (gen_assert_eqn thy is_constr is_constr);
28423
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
   379
31089
11001968caae tuned interface of module Code_Unit
haftmann
parents: 31036
diff changeset
   380
val const_typ_eqn = dest_Const o fst o strip_comb o fst o Logic.dest_equals o Thm.plain_prop_of;
28423
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
   381
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28368
diff changeset
   382
31142
8f609d1e7002 more permissive wrt. overloaded constants
haftmann
parents: 31138
diff changeset
   383
(*those following are permissive wrt. to overloaded constants!*)
8f609d1e7002 more permissive wrt. overloaded constants
haftmann
parents: 31138
diff changeset
   384
31090
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   385
fun mk_eqn thy is_constr_head = error_thm (gen_assert_eqn thy is_constr_head (K true)) o
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   386
  apfst (LocalDefs.meta_rewrite_rule (ProofContext.init thy));
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   387
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   388
fun mk_eqn_liberal thy is_constr_head = Option.map (fn (thm, _) => (thm, is_linear thm))
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   389
  o try_thm (gen_assert_eqn thy is_constr_head (K true))
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   390
  o rpair false o LocalDefs.meta_rewrite_rule (ProofContext.init thy);
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31089
diff changeset
   391
31142
8f609d1e7002 more permissive wrt. overloaded constants
haftmann
parents: 31138
diff changeset
   392
fun const_typ_eqn_unoverload thy thm =
8f609d1e7002 more permissive wrt. overloaded constants
haftmann
parents: 31138
diff changeset
   393
  let
8f609d1e7002 more permissive wrt. overloaded constants
haftmann
parents: 31138
diff changeset
   394
    val (c, ty) = const_typ_eqn thm;
8f609d1e7002 more permissive wrt. overloaded constants
haftmann
parents: 31138
diff changeset
   395
    val c' = AxClass.unoverload_const thy (c, ty);
8f609d1e7002 more permissive wrt. overloaded constants
haftmann
parents: 31138
diff changeset
   396
  in (c', ty) end;
8f609d1e7002 more permissive wrt. overloaded constants
haftmann
parents: 31138
diff changeset
   397
8f609d1e7002 more permissive wrt. overloaded constants
haftmann
parents: 31138
diff changeset
   398
fun typscheme_eqn thy = typscheme thy o const_typ_eqn_unoverload thy;
8f609d1e7002 more permissive wrt. overloaded constants
haftmann
parents: 31138
diff changeset
   399
fun const_eqn thy = fst o const_typ_eqn_unoverload thy;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   400
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   401
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   402
(* case cerificates *)
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   403
24917
haftmann
parents: 24848
diff changeset
   404
fun case_certificate thm =
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   405
  let
24917
haftmann
parents: 24848
diff changeset
   406
    val ((head, raw_case_expr), cases) = (apfst Logic.dest_equals
haftmann
parents: 24848
diff changeset
   407
      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
   408
    val _ = case head of Free _ => true
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   409
      | Var _ => true
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   410
      | _ => raise TERM ("case_cert", []);
24917
haftmann
parents: 24848
diff changeset
   411
    val ([(case_var, _)], case_expr) = Term.strip_abs_eta 1 raw_case_expr;
haftmann
parents: 24848
diff changeset
   412
    val (Const (case_const, _), raw_params) = strip_comb case_expr;
haftmann
parents: 24848
diff changeset
   413
    val n = find_index (fn Free (v, _) => v = case_var | _ => false) raw_params;
haftmann
parents: 24848
diff changeset
   414
    val _ = if n = ~1 then raise TERM ("case_cert", []) else ();
haftmann
parents: 24848
diff changeset
   415
    val params = map (fst o dest_Var) (nth_drop n raw_params);
haftmann
parents: 24848
diff changeset
   416
    fun dest_case t =
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   417
      let
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   418
        val (head' $ t_co, rhs) = Logic.dest_equals t;
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   419
        val _ = if head' = head then () else raise TERM ("case_cert", []);
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   420
        val (Const (co, _), args) = strip_comb t_co;
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   421
        val (Var (param, _), args') = strip_comb rhs;
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   422
        val _ = if args' = args then () else raise TERM ("case_cert", []);
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   423
      in (param, co) end;
24917
haftmann
parents: 24848
diff changeset
   424
    fun analyze_cases cases =
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   425
      let
24917
haftmann
parents: 24848
diff changeset
   426
        val co_list = fold (AList.update (op =) o dest_case) cases [];
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   427
      in map (the o AList.lookup (op =) co_list) params end;
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   428
    fun analyze_let t =
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   429
      let
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   430
        val (head' $ arg, Var (param', _) $ arg') = Logic.dest_equals t;
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   431
        val _ = if head' = head then () else raise TERM ("case_cert", []);
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   432
        val _ = if arg' = arg then () else raise TERM ("case_cert", []);
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   433
        val _ = if [param'] = params then () else raise TERM ("case_cert", []);
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   434
      in [] end;
24917
haftmann
parents: 24848
diff changeset
   435
    fun analyze (cases as [let_case]) =
haftmann
parents: 24848
diff changeset
   436
          (analyze_cases cases handle Bind => analyze_let let_case)
haftmann
parents: 24848
diff changeset
   437
      | analyze cases = analyze_cases cases;
haftmann
parents: 24848
diff changeset
   438
  in (case_const, (n, analyze cases)) end;
haftmann
parents: 24848
diff changeset
   439
haftmann
parents: 24848
diff changeset
   440
fun case_cert thm = case_certificate thm
haftmann
parents: 24848
diff changeset
   441
  handle Bind => error "bad case certificate"
28346
b8390cd56b8f discontinued special treatment of op = vs. eq_class.eq
haftmann
parents: 28310
diff changeset
   442
       | TERM _ => error "bad case certificate";
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24707
diff changeset
   443
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   444
end;