src/Pure/Isar/code.ML
author wenzelm
Wed, 06 Jul 2011 20:46:06 +0200
changeset 44563 85388f5570c4
parent 44510 9cba66fb109a
child 46082 3dd426ae6bea
permissions -rw-r--r--
prefer Synchronized.var;
haftmann@24219
     1
(*  Title:      Pure/Isar/code.ML
haftmann@24219
     2
    Author:     Florian Haftmann, TU Muenchen
haftmann@24219
     3
haftmann@34160
     4
Abstract executable ingredients of theory.  Management of data
haftmann@34160
     5
dependent on executable ingredients as synchronized cache; purged
haftmann@34160
     6
on any change of underlying executable ingredients.
haftmann@24219
     7
*)
haftmann@24219
     8
haftmann@24219
     9
signature CODE =
haftmann@24219
    10
sig
haftmann@31957
    11
  (*constants*)
haftmann@31957
    12
  val check_const: theory -> term -> string
haftmann@31957
    13
  val read_bare_const: theory -> string -> string * typ
haftmann@31957
    14
  val read_const: theory -> string -> string
haftmann@31962
    15
  val string_of_const: theory -> string -> string
haftmann@33906
    16
  val cert_signature: theory -> typ -> typ
haftmann@33906
    17
  val read_signature: theory -> string -> typ
haftmann@33906
    18
  val const_typ: theory -> string -> typ
haftmann@33906
    19
  val subst_signatures: theory -> term -> term
haftmann@31962
    20
  val args_number: theory -> string -> int
haftmann@31957
    21
haftmann@31156
    22
  (*constructor sets*)
haftmann@31156
    23
  val constrset_of_consts: theory -> (string * typ) list
haftmann@40969
    24
    -> string * ((string * sort) list * (string * ((string * sort) list * typ list)) list)
haftmann@31156
    25
haftmann@34313
    26
  (*code equations and certificates*)
haftmann@31962
    27
  val mk_eqn: theory -> thm * bool -> thm * bool
haftmann@31962
    28
  val mk_eqn_warning: theory -> thm -> (thm * bool) option
haftmann@31962
    29
  val mk_eqn_liberal: theory -> thm -> (thm * bool) option
haftmann@31156
    30
  val assert_eqn: theory -> thm * bool -> thm * bool
haftmann@31957
    31
  val const_typ_eqn: theory -> thm -> string * typ
haftmann@34895
    32
  val expand_eta: theory -> int -> thm -> thm
haftmann@34895
    33
  type cert
haftmann@34891
    34
  val empty_cert: theory -> string -> cert
haftmann@34891
    35
  val cert_of_eqns: theory -> string -> (thm * bool) list -> cert
haftmann@34313
    36
  val constrain_cert: theory -> sort list -> cert -> cert
haftmann@35226
    37
  val typargs_deps_of_cert: theory -> cert -> (string * sort) list * (string * typ list) list
haftmann@36209
    38
  val equations_of_cert: theory -> cert -> ((string * sort) list * typ)
haftmann@36209
    39
    * (((term * string option) list * (term * string option)) * (thm option * bool)) list
haftmann@35226
    40
  val bare_thms_of_cert: theory -> cert -> thm list
haftmann@34895
    41
  val pretty_cert: theory -> cert -> Pretty.T list
haftmann@31156
    42
haftmann@31962
    43
  (*executable code*)
haftmann@33906
    44
  val add_type: string -> theory -> theory
haftmann@33906
    45
  val add_type_cmd: string -> theory -> theory
haftmann@33906
    46
  val add_signature: string * typ -> theory -> theory
haftmann@33906
    47
  val add_signature_cmd: string * string -> theory -> theory
haftmann@31156
    48
  val add_datatype: (string * typ) list -> theory -> theory
haftmann@31156
    49
  val add_datatype_cmd: string list -> theory -> theory
haftmann@35299
    50
  val datatype_interpretation:
haftmann@40969
    51
    (string * ((string * sort) list * (string * ((string * sort) list * typ list)) list)
haftmann@35299
    52
      -> theory -> theory) -> theory -> theory
haftmann@36112
    53
  val add_abstype: thm -> theory -> theory
haftmann@35299
    54
  val abstype_interpretation:
haftmann@40969
    55
    (string * ((string * sort) list * ((string * ((string * sort) list * typ)) * (string * thm)))
haftmann@31156
    56
      -> theory -> theory) -> theory -> theory
haftmann@28368
    57
  val add_eqn: thm -> theory -> theory
haftmann@31088
    58
  val add_nbe_eqn: thm -> theory -> theory
haftmann@28368
    59
  val add_default_eqn: thm -> theory -> theory
haftmann@28703
    60
  val add_default_eqn_attribute: attribute
haftmann@28703
    61
  val add_default_eqn_attrib: Attrib.src
haftmann@37400
    62
  val add_nbe_default_eqn: thm -> theory -> theory
haftmann@37400
    63
  val add_nbe_default_eqn_attribute: attribute
haftmann@37400
    64
  val add_nbe_default_eqn_attrib: Attrib.src
haftmann@28368
    65
  val del_eqn: thm -> theory -> theory
haftmann@28368
    66
  val del_eqns: string -> theory -> theory
haftmann@24844
    67
  val add_case: thm -> theory -> theory
haftmann@24844
    68
  val add_undefined: string -> theory -> theory
haftmann@40969
    69
  val get_type: theory -> string
haftmann@40969
    70
    -> ((string * sort) list * (string * ((string * sort) list * typ list)) list) * bool
haftmann@35299
    71
  val get_type_of_constr_or_abstr: theory -> string -> (string * bool) option
haftmann@35226
    72
  val is_constr: theory -> string -> bool
haftmann@35226
    73
  val is_abstr: theory -> string -> bool
haftmann@34891
    74
  val get_cert: theory -> ((thm * bool) list -> (thm * bool) list) -> string -> cert
haftmann@29960
    75
  val get_case_scheme: theory -> string -> (int * (int * string list)) option
haftmann@37413
    76
  val get_case_cong: theory -> string -> thm option
haftmann@31890
    77
  val undefineds: theory -> string list
haftmann@24219
    78
  val print_codesetup: theory -> unit
haftmann@31957
    79
haftmann@31957
    80
  (*infrastructure*)
haftmann@31998
    81
  val set_code_target_attr: (string -> thm -> theory -> theory) -> theory -> theory
haftmann@24219
    82
end;
haftmann@24219
    83
haftmann@24219
    84
signature CODE_DATA_ARGS =
haftmann@24219
    85
sig
haftmann@24219
    86
  type T
haftmann@24219
    87
  val empty: T
haftmann@24219
    88
end;
haftmann@24219
    89
haftmann@24219
    90
signature CODE_DATA =
haftmann@24219
    91
sig
haftmann@24219
    92
  type T
haftmann@39641
    93
  val change: theory option -> (T -> T) -> T
haftmann@39641
    94
  val change_yield: theory option -> (T -> 'a * T) -> 'a * T
haftmann@24219
    95
end;
haftmann@24219
    96
haftmann@24219
    97
signature PRIVATE_CODE =
haftmann@24219
    98
sig
haftmann@24219
    99
  include CODE
haftmann@34160
   100
  val declare_data: Object.T -> serial
haftmann@24219
   101
  val change_yield_data: serial * ('a -> Object.T) * (Object.T -> 'a)
haftmann@34246
   102
    -> theory -> ('a -> 'b * 'a) -> 'b * 'a
haftmann@24219
   103
end;
haftmann@24219
   104
haftmann@24219
   105
structure Code : PRIVATE_CODE =
haftmann@24219
   106
struct
haftmann@24219
   107
haftmann@31962
   108
(** auxiliary **)
haftmann@31962
   109
haftmann@31962
   110
(* printing *)
haftmann@31156
   111
wenzelm@39393
   112
fun string_of_typ thy =
wenzelm@39393
   113
  Syntax.string_of_typ (Config.put show_sorts true (Syntax.init_pretty_global thy));
haftmann@31962
   114
wenzelm@43230
   115
fun string_of_const thy c =
wenzelm@43231
   116
  let val ctxt = Proof_Context.init_global thy in
wenzelm@43230
   117
    case AxClass.inst_of_param thy c of
wenzelm@43230
   118
      SOME (c, tyco) =>
wenzelm@43231
   119
        Proof_Context.extern_const ctxt c ^ " " ^ enclose "[" "]"
wenzelm@43231
   120
          (Proof_Context.extern_type ctxt tyco)
wenzelm@43231
   121
    | NONE => Proof_Context.extern_const ctxt c
wenzelm@43230
   122
  end;
haftmann@31156
   123
haftmann@31156
   124
haftmann@31962
   125
(* constants *)
haftmann@31156
   126
haftmann@33906
   127
fun typ_equiv tys = Type.raw_instance tys andalso Type.raw_instance (swap tys);
haftmann@33906
   128
haftmann@31962
   129
fun check_bare_const thy t = case try dest_Const t
haftmann@31962
   130
 of SOME c_ty => c_ty
haftmann@31962
   131
  | NONE => error ("Not a constant: " ^ Syntax.string_of_term_global thy t);
haftmann@31962
   132
haftmann@40608
   133
fun check_unoverload thy (c, ty) =
haftmann@40608
   134
  let
haftmann@40608
   135
    val c' = AxClass.unoverload_const thy (c, ty);
haftmann@40608
   136
    val ty_decl = Sign.the_const_type thy c';
haftmann@40608
   137
  in if Sign.typ_equiv thy
haftmann@40608
   138
      (Type.strip_sorts ty_decl, Type.strip_sorts (Logic.varifyT_global ty)) then c'
haftmann@40608
   139
    else error ("Type\n" ^ string_of_typ thy ty
haftmann@40608
   140
      ^ "\nof constant " ^ quote c
haftmann@40608
   141
      ^ "\nis too specific compared to declared type\n"
haftmann@40608
   142
      ^ string_of_typ thy ty_decl)
haftmann@40608
   143
  end; 
haftmann@40608
   144
haftmann@40608
   145
fun check_const thy = check_unoverload thy o check_bare_const thy;
haftmann@31962
   146
haftmann@31962
   147
fun read_bare_const thy = check_bare_const thy o Syntax.read_term_global thy;
haftmann@31962
   148
haftmann@40608
   149
fun read_const thy = check_unoverload thy o read_bare_const thy;
haftmann@31156
   150
haftmann@32872
   151
haftmann@31962
   152
(** data store **)
haftmann@31962
   153
haftmann@35226
   154
(* datatypes *)
haftmann@31962
   155
haftmann@44505
   156
datatype typ_spec = Constructors of (string * ((string * sort) list * typ list)) list *
haftmann@44505
   157
      string list (*references to associated case constructors*)
haftmann@40969
   158
  | Abstractor of (string * ((string * sort) list * typ)) * (string * thm);
haftmann@31962
   159
haftmann@44505
   160
fun constructors_of (Constructors (cos, _)) = (cos, false)
haftmann@40969
   161
  | constructors_of (Abstractor ((co, (vs, ty)), _)) = ([(co, (vs, [ty]))], true);
haftmann@31962
   162
haftmann@44509
   163
fun case_consts_of (Constructors (_, case_consts)) = case_consts
haftmann@44509
   164
  | case_consts_of (Abstractor _) = [];
haftmann@31962
   165
haftmann@35226
   166
(* functions *)
haftmann@35226
   167
haftmann@37435
   168
datatype fun_spec = Default of (thm * bool) list * (thm * bool) list lazy
haftmann@44505
   169
      (* (cache for default equations, lazy computation of default equations)
haftmann@44505
   170
         -- helps to restore natural order of default equations *)
haftmann@35226
   171
  | Eqns of (thm * bool) list
haftmann@35226
   172
  | Proj of term * string
haftmann@35226
   173
  | Abstr of thm * string;
haftmann@35226
   174
haftmann@37435
   175
val empty_fun_spec = Default ([], Lazy.value []);
haftmann@35226
   176
haftmann@35226
   177
fun is_default (Default _) = true
haftmann@35226
   178
  | is_default _ = false;
haftmann@35226
   179
haftmann@35226
   180
fun associated_abstype (Abstr (_, tyco)) = SOME tyco
haftmann@35226
   181
  | associated_abstype _ = NONE;
haftmann@31962
   182
haftmann@31962
   183
haftmann@31962
   184
(* executable code data *)
haftmann@31962
   185
haftmann@31962
   186
datatype spec = Spec of {
haftmann@31962
   187
  history_concluded: bool,
haftmann@33906
   188
  signatures: int Symtab.table * typ Symtab.table,
haftmann@35226
   189
  functions: ((bool * fun_spec) * (serial * fun_spec) list) Symtab.table
haftmann@31962
   190
    (*with explicit history*),
haftmann@35299
   191
  types: ((serial * ((string * sort) list * typ_spec)) list) Symtab.table
haftmann@31962
   192
    (*with explicit history*),
haftmann@37413
   193
  cases: ((int * (int * string list)) * thm) Symtab.table * unit Symtab.table
haftmann@31962
   194
};
haftmann@31962
   195
haftmann@35299
   196
fun make_spec (history_concluded, ((signatures, functions), (types, cases))) =
haftmann@33906
   197
  Spec { history_concluded = history_concluded,
haftmann@35299
   198
    signatures = signatures, functions = functions, types = types, cases = cases };
haftmann@33906
   199
fun map_spec f (Spec { history_concluded = history_concluded, signatures = signatures,
haftmann@35299
   200
  functions = functions, types = types, cases = cases }) =
haftmann@35299
   201
  make_spec (f (history_concluded, ((signatures, functions), (types, cases))));
haftmann@35226
   202
fun merge_spec (Spec { history_concluded = _, signatures = (tycos1, sigs1), functions = functions1,
haftmann@35299
   203
    types = types1, cases = (cases1, undefs1) },
haftmann@35226
   204
  Spec { history_concluded = _, signatures = (tycos2, sigs2), functions = functions2,
haftmann@35299
   205
    types = types2, cases = (cases2, undefs2) }) =
haftmann@31962
   206
  let
haftmann@33906
   207
    val signatures = (Symtab.merge (op =) (tycos1, tycos2),
haftmann@33906
   208
      Symtab.merge typ_equiv (sigs1, sigs2));
bulwahn@43578
   209
    val types = Symtab.join (K (AList.merge (op =) (K true))) (types1, types2);
haftmann@44510
   210
    val case_consts_of' = (maps case_consts_of o map (snd o snd o hd o snd) o Symtab.dest);
haftmann@35226
   211
    fun merge_functions ((_, history1), (_, history2)) =
haftmann@31962
   212
      let
haftmann@31962
   213
        val raw_history = AList.merge (op = : serial * serial -> bool)
haftmann@35226
   214
          (K true) (history1, history2);
haftmann@35226
   215
        val filtered_history = filter_out (is_default o snd) raw_history;
haftmann@31962
   216
        val history = if null filtered_history
haftmann@31962
   217
          then raw_history else filtered_history;
haftmann@31962
   218
      in ((false, (snd o hd) history), history) end;
haftmann@44509
   219
    val all_datatype_specs = map (snd o snd o hd o snd) (Symtab.dest types);
haftmann@44509
   220
    val all_constructors = maps (map fst o fst o constructors_of) all_datatype_specs;
haftmann@44510
   221
    val invalidated_case_consts = union (op =) (case_consts_of' types1) (case_consts_of' types2)
haftmann@44510
   222
      |> subtract (op =) (maps case_consts_of all_datatype_specs)
bulwahn@43578
   223
    val functions = Symtab.join (K merge_functions) (functions1, functions2)
bulwahn@43578
   224
      |> fold (fn c => Symtab.map_entry c (apfst (K (true, empty_fun_spec)))) all_constructors;
haftmann@44509
   225
    val cases = (Symtab.merge (K true) (cases1, cases2)
haftmann@44510
   226
      |> fold Symtab.delete invalidated_case_consts, Symtab.merge (K true) (undefs1, undefs2));
haftmann@35299
   227
  in make_spec (false, ((signatures, functions), (types, cases))) end;
haftmann@31962
   228
haftmann@31962
   229
fun history_concluded (Spec { history_concluded, ... }) = history_concluded;
haftmann@33906
   230
fun the_signatures (Spec { signatures, ... }) = signatures;
haftmann@35226
   231
fun the_functions (Spec { functions, ... }) = functions;
haftmann@35299
   232
fun the_types (Spec { types, ... }) = types;
haftmann@31962
   233
fun the_cases (Spec { cases, ... }) = cases;
haftmann@32544
   234
val map_history_concluded = map_spec o apfst;
haftmann@33906
   235
val map_signatures = map_spec o apsnd o apfst o apfst;
haftmann@35226
   236
val map_functions = map_spec o apsnd o apfst o apsnd;
haftmann@35226
   237
val map_typs = map_spec o apsnd o apsnd o apfst;
haftmann@31962
   238
val map_cases = map_spec o apsnd o apsnd o apsnd;
haftmann@31962
   239
haftmann@31962
   240
haftmann@31962
   241
(* data slots dependent on executable code *)
haftmann@31962
   242
haftmann@31962
   243
(*private copy avoids potential conflict of table exceptions*)
wenzelm@31972
   244
structure Datatab = Table(type key = int val ord = int_ord);
haftmann@31962
   245
haftmann@31962
   246
local
haftmann@31962
   247
haftmann@34160
   248
type kind = { empty: Object.T };
haftmann@31962
   249
wenzelm@44563
   250
val kinds = Synchronized.var "Code_Data" (Datatab.empty: kind Datatab.table);
haftmann@31962
   251
wenzelm@44563
   252
fun invoke f k =
wenzelm@44563
   253
  (case Datatab.lookup (Synchronized.value kinds) k of
wenzelm@44563
   254
    SOME kind => f kind
wenzelm@44563
   255
  | NONE => raise Fail "Invalid code data identifier");
haftmann@31962
   256
haftmann@31962
   257
in
haftmann@31962
   258
haftmann@34160
   259
fun declare_data empty =
haftmann@31962
   260
  let
haftmann@31962
   261
    val k = serial ();
haftmann@34160
   262
    val kind = { empty = empty };
wenzelm@44563
   263
    val _ = Synchronized.change kinds (Datatab.update (k, kind));
haftmann@31962
   264
  in k end;
haftmann@31962
   265
haftmann@31962
   266
fun invoke_init k = invoke (fn kind => #empty kind) k;
haftmann@31962
   267
haftmann@31962
   268
end; (*local*)
haftmann@31962
   269
haftmann@31962
   270
haftmann@31962
   271
(* theory store *)
haftmann@31962
   272
haftmann@31962
   273
local
haftmann@31962
   274
haftmann@31962
   275
type data = Object.T Datatab.table;
haftmann@34239
   276
fun empty_dataref () = Synchronized.var "code data" (NONE : (data * theory_ref) option);
haftmann@31962
   277
haftmann@34239
   278
structure Code_Data = Theory_Data
haftmann@31962
   279
(
haftmann@34239
   280
  type T = spec * (data * theory_ref) option Synchronized.var;
haftmann@33906
   281
  val empty = (make_spec (false, (((Symtab.empty, Symtab.empty), Symtab.empty),
haftmann@34239
   282
    (Symtab.empty, (Symtab.empty, Symtab.empty)))), empty_dataref ());
wenzelm@41720
   283
  val extend = I  (* FIXME empty_dataref!?! *)
haftmann@34239
   284
  fun merge ((spec1, _), (spec2, _)) =
haftmann@34239
   285
    (merge_spec (spec1, spec2), empty_dataref ());
haftmann@31962
   286
);
haftmann@31962
   287
haftmann@31962
   288
in
haftmann@31962
   289
haftmann@35226
   290
haftmann@31962
   291
(* access to executable code *)
haftmann@31962
   292
haftmann@31962
   293
val the_exec = fst o Code_Data.get;
haftmann@31962
   294
haftmann@34239
   295
fun map_exec_purge f = Code_Data.map (fn (exec, _) => (f exec, empty_dataref ()));
haftmann@31962
   296
haftmann@35226
   297
fun change_fun_spec delete c f = (map_exec_purge o map_functions
haftmann@35226
   298
  o (if delete then Symtab.map_entry c else Symtab.map_default (c, ((false, empty_fun_spec), [])))
haftmann@35226
   299
    o apfst) (fn (_, spec) => (true, f spec));
haftmann@31962
   300
haftmann@31962
   301
haftmann@31962
   302
(* tackling equation history *)
haftmann@31962
   303
haftmann@31962
   304
fun continue_history thy = if (history_concluded o the_exec) thy
haftmann@31962
   305
  then thy
haftmann@31962
   306
    |> (Code_Data.map o apfst o map_history_concluded) (K false)
haftmann@31962
   307
    |> SOME
haftmann@31962
   308
  else NONE;
haftmann@31962
   309
haftmann@31962
   310
fun conclude_history thy = if (history_concluded o the_exec) thy
haftmann@31962
   311
  then NONE
haftmann@31962
   312
  else thy
haftmann@31962
   313
    |> (Code_Data.map o apfst)
haftmann@39264
   314
        ((map_functions o Symtab.map) (fn _ => fn ((changed, current), history) =>
haftmann@31962
   315
          ((false, current),
haftmann@31962
   316
            if changed then (serial (), current) :: history else history))
haftmann@31962
   317
        #> map_history_concluded (K true))
haftmann@31962
   318
    |> SOME;
haftmann@31962
   319
haftmann@34239
   320
val _ = Context.>> (Context.map_theory (Theory.at_begin continue_history #> Theory.at_end conclude_history));
haftmann@31962
   321
haftmann@31962
   322
haftmann@31962
   323
(* access to data dependent on abstract executable code *)
haftmann@31962
   324
haftmann@34239
   325
fun change_yield_data (kind, mk, dest) theory f =
haftmann@31962
   326
  let
haftmann@34239
   327
    val dataref = (snd o Code_Data.get) theory;
haftmann@34246
   328
    val (datatab, thy_ref) = case Synchronized.value dataref
haftmann@34246
   329
     of SOME (datatab, thy_ref) => if Theory.eq_thy (theory, Theory.deref thy_ref)
haftmann@34246
   330
          then (datatab, thy_ref)
haftmann@34246
   331
          else (Datatab.empty, Theory.check_thy theory)
haftmann@34246
   332
      | NONE => (Datatab.empty, Theory.check_thy theory)
haftmann@34239
   333
    val data = case Datatab.lookup datatab kind
haftmann@34239
   334
     of SOME data => data
haftmann@34239
   335
      | NONE => invoke_init kind;
haftmann@41006
   336
    val result as (_, data') = f (dest data);
haftmann@34239
   337
    val _ = Synchronized.change dataref
haftmann@34239
   338
      ((K o SOME) (Datatab.update (kind, mk data') datatab, thy_ref));
haftmann@34239
   339
  in result end;
haftmann@31962
   340
haftmann@31962
   341
end; (*local*)
haftmann@31962
   342
haftmann@31962
   343
haftmann@31962
   344
(** foundation **)
haftmann@31962
   345
haftmann@31962
   346
(* constants *)
haftmann@31962
   347
haftmann@33906
   348
fun arity_number thy tyco = case Symtab.lookup ((fst o the_signatures o the_exec) thy) tyco
haftmann@33906
   349
 of SOME n => n
haftmann@33906
   350
  | NONE => Sign.arity_number thy tyco;
haftmann@33906
   351
haftmann@33906
   352
fun build_tsig thy =
haftmann@33906
   353
  let
wenzelm@43246
   354
    val ctxt = Syntax.init_pretty_global thy;
wenzelm@43246
   355
    val (tycos, _) = the_signatures (the_exec thy);
wenzelm@43246
   356
    val decls = #types (Type.rep_tsig (Sign.tsig_of thy))
haftmann@34265
   357
      |> snd 
haftmann@34265
   358
      |> Symtab.fold (fn (tyco, n) =>
haftmann@34265
   359
          Symtab.update (tyco, Type.LogicalType n)) tycos;
haftmann@34265
   360
  in
haftmann@34265
   361
    Type.empty_tsig
wenzelm@43246
   362
    |> Symtab.fold (fn (tyco, Type.LogicalType n) => Type.add_type ctxt Name_Space.default_naming
haftmann@34265
   363
        (Binding.qualified_name tyco, n) | _ => I) decls
haftmann@34265
   364
  end;
haftmann@33906
   365
wenzelm@43246
   366
fun cert_signature thy =
wenzelm@43246
   367
  Logic.varifyT_global o Type.cert_typ (build_tsig thy) o Type.no_tvars;
haftmann@33906
   368
wenzelm@43246
   369
fun read_signature thy =
wenzelm@43246
   370
  cert_signature thy o Type.strip_sorts o Syntax.parse_typ (Proof_Context.init_global thy);
haftmann@33906
   371
haftmann@33906
   372
fun expand_signature thy = Type.cert_typ_mode Type.mode_syntax (Sign.tsig_of thy);
haftmann@33906
   373
haftmann@33906
   374
fun lookup_typ thy = Symtab.lookup ((snd o the_signatures o the_exec) thy);
haftmann@33906
   375
haftmann@33906
   376
fun const_typ thy c = case lookup_typ thy c
haftmann@33906
   377
 of SOME ty => ty
haftmann@33906
   378
  | NONE => (Type.strip_sorts o Sign.the_const_type thy) c;
haftmann@33906
   379
wenzelm@41093
   380
fun args_number thy = length o binder_types o const_typ thy;
haftmann@41012
   381
haftmann@33906
   382
fun subst_signature thy c ty =
haftmann@33906
   383
  let
haftmann@41006
   384
    fun mk_subst (Type (_, tys1)) (Type (_, tys2)) =
haftmann@33906
   385
          fold2 mk_subst tys1 tys2
haftmann@41006
   386
      | mk_subst ty (TVar (v, _)) = Vartab.update (v, ([], ty))
haftmann@33906
   387
  in case lookup_typ thy c
haftmann@33906
   388
   of SOME ty' => Envir.subst_type (mk_subst ty (expand_signature thy ty') Vartab.empty) ty'
haftmann@33906
   389
    | NONE => ty
haftmann@33906
   390
  end;
haftmann@33906
   391
haftmann@33906
   392
fun subst_signatures thy = map_aterms (fn Const (c, ty) => Const (c, subst_signature thy c ty) | t => t);
haftmann@33906
   393
haftmann@41012
   394
fun logical_typscheme thy (c, ty) =
haftmann@41012
   395
  (map dest_TFree (Sign.const_typargs thy (c, ty)), Type.strip_sorts ty);
haftmann@41012
   396
haftmann@41012
   397
fun typscheme thy (c, ty) = logical_typscheme thy (c, subst_signature thy c ty);
haftmann@31962
   398
haftmann@31962
   399
haftmann@31962
   400
(* datatypes *)
haftmann@31156
   401
haftmann@35226
   402
fun no_constr thy s (c, ty) = error ("Not a datatype constructor:\n" ^ string_of_const thy c
haftmann@35226
   403
  ^ " :: " ^ string_of_typ thy ty ^ "\n" ^ enclose "(" ")" s);
haftmann@35226
   404
haftmann@41049
   405
fun analyze_constructor thy (c, raw_ty) =
haftmann@35226
   406
  let
haftmann@35226
   407
    val _ = Thm.cterm_of thy (Const (c, raw_ty));
haftmann@35226
   408
    val ty = subst_signature thy c raw_ty;
wenzelm@35845
   409
    val ty_decl = (Logic.unvarifyT_global o const_typ thy) c;
haftmann@35226
   410
    fun last_typ c_ty ty =
haftmann@35226
   411
      let
haftmann@35226
   412
        val tfrees = Term.add_tfreesT ty [];
wenzelm@41093
   413
        val (tyco, vs) = (apsnd o map) dest_TFree (dest_Type (body_type ty))
haftmann@35226
   414
          handle TYPE _ => no_constr thy "bad type" c_ty
haftmann@36112
   415
        val _ = if tyco = "fun" then no_constr thy "bad type" c_ty else ();
haftmann@35226
   416
        val _ = if has_duplicates (eq_fst (op =)) vs
haftmann@35226
   417
          then no_constr thy "duplicate type variables in datatype" c_ty else ();
haftmann@35226
   418
        val _ = if length tfrees <> length vs
haftmann@35226
   419
          then no_constr thy "type variables missing in datatype" c_ty else ();
haftmann@35226
   420
      in (tyco, vs) end;
haftmann@35226
   421
    val (tyco, _) = last_typ (c, ty) ty_decl;
haftmann@35226
   422
    val (_, vs) = last_typ (c, ty) ty;
haftmann@35226
   423
  in ((tyco, map snd vs), (c, (map fst vs, ty))) end;
haftmann@35226
   424
haftmann@31156
   425
fun constrset_of_consts thy cs =
haftmann@31156
   426
  let
haftmann@31156
   427
    val _ = map (fn (c, _) => if (is_some o AxClass.class_of_param thy) c
haftmann@31156
   428
      then error ("Is a class parameter: " ^ string_of_const thy c) else ()) cs;
haftmann@31156
   429
    fun add ((tyco', sorts'), c) ((tyco, sorts), cs) =
haftmann@31156
   430
      let
haftmann@31998
   431
        val _ = if (tyco' : string) <> tyco
haftmann@31156
   432
          then error "Different type constructors in constructor set"
haftmann@31156
   433
          else ();
haftmann@41006
   434
        val sorts'' =
haftmann@41006
   435
          map2 (curry (Sorts.inter_sort (Sign.classes_of thy))) sorts' sorts
haftmann@41006
   436
      in ((tyco, sorts''), c :: cs) end;
haftmann@31156
   437
    fun inst vs' (c, (vs, ty)) =
haftmann@31156
   438
      let
haftmann@31156
   439
        val the_v = the o AList.lookup (op =) (vs ~~ vs');
haftmann@41049
   440
        val ty' = map_type_tfree (fn (v, _) => TFree (the_v v)) ty;
haftmann@41012
   441
        val (vs'', _) = logical_typscheme thy (c, ty');
wenzelm@41093
   442
      in (c, (vs'', binder_types ty')) end;
haftmann@41049
   443
    val c' :: cs' = map (analyze_constructor thy) cs;
haftmann@31156
   444
    val ((tyco, sorts), cs'') = fold add cs' (apsnd single c');
wenzelm@44211
   445
    val vs = Name.invent_names Name.context Name.aT sorts;
haftmann@31156
   446
    val cs''' = map (inst vs) cs'';
haftmann@31156
   447
  in (tyco, (vs, rev cs''')) end;
haftmann@31156
   448
haftmann@35299
   449
fun get_type_entry thy tyco = case these (Symtab.lookup ((the_types o the_exec) thy) tyco)
haftmann@35226
   450
 of (_, entry) :: _ => SOME entry
haftmann@35226
   451
  | _ => NONE;
haftmann@35226
   452
haftmann@40969
   453
fun get_type thy tyco = case get_type_entry thy tyco
haftmann@35226
   454
 of SOME (vs, spec) => apfst (pair vs) (constructors_of spec)
haftmann@35226
   455
  | NONE => arity_number thy tyco
wenzelm@44211
   456
      |> Name.invent Name.context Name.aT
haftmann@35226
   457
      |> map (rpair [])
haftmann@35226
   458
      |> rpair []
haftmann@35226
   459
      |> rpair false;
haftmann@35226
   460
haftmann@35299
   461
fun get_abstype_spec thy tyco = case get_type_entry thy tyco
haftmann@35226
   462
 of SOME (vs, Abstractor spec) => (vs, spec)
haftmann@36122
   463
  | _ => error ("Not an abstract type: " ^ tyco);
haftmann@35226
   464
 
haftmann@35299
   465
fun get_type_of_constr_or_abstr thy c =
wenzelm@41093
   466
  case (body_type o const_typ thy) c
haftmann@41006
   467
   of Type (tyco, _) => let val ((_, cos), abstract) = get_type thy tyco
haftmann@35226
   468
        in if member (op =) (map fst cos) c then SOME (tyco, abstract) else NONE end
haftmann@31962
   469
    | _ => NONE;
haftmann@31962
   470
haftmann@35299
   471
fun is_constr thy c = case get_type_of_constr_or_abstr thy c
haftmann@35226
   472
 of SOME (_, false) => true
haftmann@35226
   473
   | _ => false;
haftmann@35226
   474
haftmann@35299
   475
fun is_abstr thy c = case get_type_of_constr_or_abstr thy c
haftmann@35226
   476
 of SOME (_, true) => true
haftmann@35226
   477
   | _ => false;
haftmann@31962
   478
haftmann@31156
   479
haftmann@34313
   480
(* bare code equations *)
haftmann@31156
   481
haftmann@35226
   482
(* convention for variables:
haftmann@35226
   483
    ?x ?'a   for free-floating theorems (e.g. in the data store)
haftmann@35226
   484
    ?x  'a   for certificates
haftmann@35226
   485
     x  'a   for final representation of equations
haftmann@35226
   486
*)
haftmann@35226
   487
haftmann@31156
   488
exception BAD_THM of string;
haftmann@31156
   489
fun bad_thm msg = raise BAD_THM msg;
haftmann@31156
   490
fun error_thm f thm = f thm handle BAD_THM msg => error msg;
haftmann@31642
   491
fun warning_thm f thm = SOME (f thm) handle BAD_THM msg => (warning msg; NONE)
haftmann@31156
   492
fun try_thm f thm = SOME (f thm) handle BAD_THM _ => NONE;
haftmann@31156
   493
haftmann@31156
   494
fun is_linear thm =
haftmann@31156
   495
  let val (_, args) = (strip_comb o fst o Logic.dest_equals o Thm.plain_prop_of) thm
haftmann@31156
   496
  in not (has_duplicates (op =) ((fold o fold_aterms)
haftmann@31156
   497
    (fn Var (v, _) => cons v | _ => I) args [])) end;
haftmann@31156
   498
haftmann@36209
   499
fun check_decl_ty thy (c, ty) =
haftmann@36209
   500
  let
haftmann@36209
   501
    val ty_decl = Sign.the_const_type thy c;
haftmann@36209
   502
  in if Sign.typ_equiv thy (Type.strip_sorts ty_decl, Type.strip_sorts ty) then ()
haftmann@36209
   503
    else bad_thm ("Type\n" ^ string_of_typ thy ty
haftmann@36209
   504
      ^ "\nof constant " ^ quote c
haftmann@40608
   505
      ^ "\nis too specific compared to declared type\n"
haftmann@36209
   506
      ^ string_of_typ thy ty_decl)
haftmann@36209
   507
  end; 
haftmann@36209
   508
haftmann@35226
   509
fun check_eqn thy { allow_nonlinear, allow_consts, allow_pats } thm (lhs, rhs) =
haftmann@31156
   510
  let
haftmann@34894
   511
    fun bad s = bad_thm (s ^ ":\n" ^ Display.string_of_thm_global thy thm);
haftmann@31156
   512
    fun vars_of t = fold_aterms (fn Var (v, _) => insert (op =) v
haftmann@34894
   513
      | Free _ => bad "Illegal free variable in equation"
haftmann@31156
   514
      | _ => I) t [];
haftmann@31156
   515
    fun tvars_of t = fold_term_types (fn _ =>
haftmann@31156
   516
      fold_atyps (fn TVar (v, _) => insert (op =) v
haftmann@34894
   517
        | TFree _ => bad "Illegal free type variable in equation")) t [];
haftmann@31156
   518
    val lhs_vs = vars_of lhs;
haftmann@31156
   519
    val rhs_vs = vars_of rhs;
haftmann@31156
   520
    val lhs_tvs = tvars_of lhs;
haftmann@31156
   521
    val rhs_tvs = tvars_of rhs;
haftmann@31156
   522
    val _ = if null (subtract (op =) lhs_vs rhs_vs)
haftmann@31156
   523
      then ()
haftmann@34894
   524
      else bad "Free variables on right hand side of equation";
haftmann@31156
   525
    val _ = if null (subtract (op =) lhs_tvs rhs_tvs)
haftmann@31156
   526
      then ()
haftmann@34894
   527
      else bad "Free type variables on right hand side of equation";
haftmann@34894
   528
    val (head, args) = strip_comb lhs;
haftmann@31156
   529
    val (c, ty) = case head
haftmann@31156
   530
     of Const (c_ty as (_, ty)) => (AxClass.unoverload_const thy c_ty, ty)
haftmann@34894
   531
      | _ => bad "Equation not headed by constant";
haftmann@34894
   532
    fun check _ (Abs _) = bad "Abstraction on left hand side of equation"
haftmann@31156
   533
      | check 0 (Var _) = ()
haftmann@34894
   534
      | check _ (Var _) = bad "Variable with application on left hand side of equation"
haftmann@31156
   535
      | check n (t1 $ t2) = (check (n+1) t1; check 0 t2)
haftmann@34894
   536
      | check n (Const (c_ty as (c, ty))) =
haftmann@35226
   537
          if allow_pats then let
haftmann@33906
   538
            val c' = AxClass.unoverload_const thy c_ty
wenzelm@41093
   539
          in if n = (length o binder_types o subst_signature thy c') ty
haftmann@35226
   540
            then if allow_consts orelse is_constr thy c'
haftmann@33906
   541
              then ()
haftmann@34894
   542
              else bad (quote c ^ " is not a constructor, on left hand side of equation")
haftmann@34894
   543
            else bad ("Partially applied constant " ^ quote c ^ " on left hand side of equation")
haftmann@36209
   544
          end else bad ("Pattern not allowed here, but constant " ^ quote c ^ " encountered on left hand side")
haftmann@31156
   545
    val _ = map (check 0) args;
haftmann@35226
   546
    val _ = if allow_nonlinear orelse is_linear thm then ()
haftmann@34894
   547
      else bad "Duplicate variables on left hand side of equation";
haftmann@34894
   548
    val _ = if (is_none o AxClass.class_of_param thy) c then ()
haftmann@34894
   549
      else bad "Overloaded constant as head in equation";
haftmann@34894
   550
    val _ = if not (is_constr thy c) then ()
haftmann@34894
   551
      else bad "Constructor as head in equation";
haftmann@35226
   552
    val _ = if not (is_abstr thy c) then ()
haftmann@35226
   553
      else bad "Abstractor as head in equation";
haftmann@36209
   554
    val _ = check_decl_ty thy (c, ty);
haftmann@35226
   555
  in () end;
haftmann@35226
   556
haftmann@35226
   557
fun gen_assert_eqn thy check_patterns (thm, proper) =
haftmann@35226
   558
  let
haftmann@35226
   559
    fun bad s = bad_thm (s ^ ":\n" ^ Display.string_of_thm_global thy thm);
haftmann@35226
   560
    val (lhs, rhs) = (Logic.dest_equals o Thm.plain_prop_of) thm
haftmann@35226
   561
      handle TERM _ => bad "Not an equation"
haftmann@35226
   562
           | THM _ => bad "Not a proper equation";
haftmann@35226
   563
    val _ = check_eqn thy { allow_nonlinear = not proper,
haftmann@35226
   564
      allow_consts = not (proper andalso check_patterns), allow_pats = true } thm (lhs, rhs);
haftmann@31156
   565
  in (thm, proper) end;
haftmann@31156
   566
haftmann@35226
   567
fun assert_abs_eqn thy some_tyco thm =
haftmann@35226
   568
  let
haftmann@35226
   569
    fun bad s = bad_thm (s ^ ":\n" ^ Display.string_of_thm_global thy thm);
haftmann@35226
   570
    val (full_lhs, rhs) = (Logic.dest_equals o Thm.plain_prop_of) thm
haftmann@35226
   571
      handle TERM _ => bad "Not an equation"
haftmann@35226
   572
           | THM _ => bad "Not a proper equation";
haftmann@35226
   573
    val (rep, lhs) = dest_comb full_lhs
haftmann@35226
   574
      handle TERM _ => bad "Not an abstract equation";
haftmann@36202
   575
    val (rep_const, ty) = dest_Const rep;
haftmann@40428
   576
    val (tyco, Ts) = (dest_Type o domain_type) ty
haftmann@39774
   577
      handle TERM _ => bad "Not an abstract equation"
haftmann@39774
   578
           | TYPE _ => bad "Not an abstract equation";
haftmann@35226
   579
    val _ = case some_tyco of SOME tyco' => if tyco = tyco' then ()
haftmann@35226
   580
          else bad ("Abstract type mismatch:" ^ quote tyco ^ " vs. " ^ quote tyco')
haftmann@35226
   581
      | NONE => ();
haftmann@36202
   582
    val (vs', (_, (rep', _))) = get_abstype_spec thy tyco;
haftmann@35226
   583
    val _ = if rep_const = rep' then ()
haftmann@35226
   584
      else bad ("Projection mismatch: " ^ quote rep_const ^ " vs. " ^ quote rep');
haftmann@35226
   585
    val _ = check_eqn thy { allow_nonlinear = false,
haftmann@35226
   586
      allow_consts = false, allow_pats = false } thm (lhs, rhs);
haftmann@40810
   587
    val _ = if forall2 (fn T => fn (_, sort) => Sign.of_sort thy (T, sort)) Ts vs' then ()
haftmann@40428
   588
      else error ("Type arguments do not satisfy sort constraints of abstype certificate.");
haftmann@35226
   589
  in (thm, tyco) end;
haftmann@35226
   590
haftmann@34894
   591
fun assert_eqn thy = error_thm (gen_assert_eqn thy true);
haftmann@31156
   592
wenzelm@43231
   593
fun meta_rewrite thy = Local_Defs.meta_rewrite_rule (Proof_Context.init_global thy);
haftmann@31962
   594
haftmann@34894
   595
fun mk_eqn thy = error_thm (gen_assert_eqn thy false) o
haftmann@31962
   596
  apfst (meta_rewrite thy);
haftmann@31962
   597
haftmann@31962
   598
fun mk_eqn_warning thy = Option.map (fn (thm, _) => (thm, is_linear thm))
haftmann@34894
   599
  o warning_thm (gen_assert_eqn thy false) o rpair false o meta_rewrite thy;
haftmann@31962
   600
haftmann@31962
   601
fun mk_eqn_liberal thy = Option.map (fn (thm, _) => (thm, is_linear thm))
haftmann@34894
   602
  o try_thm (gen_assert_eqn thy false) o rpair false o meta_rewrite thy;
haftmann@31156
   603
haftmann@35226
   604
fun mk_abs_eqn thy = error_thm (assert_abs_eqn thy NONE) o meta_rewrite thy;
haftmann@35226
   605
haftmann@33906
   606
val head_eqn = dest_Const o fst o strip_comb o fst o Logic.dest_equals o Thm.plain_prop_of;
haftmann@31156
   607
haftmann@31957
   608
fun const_typ_eqn thy thm =
haftmann@31156
   609
  let
haftmann@32640
   610
    val (c, ty) = head_eqn thm;
haftmann@31156
   611
    val c' = AxClass.unoverload_const thy (c, ty);
haftmann@33906
   612
      (*permissive wrt. to overloaded constants!*)
haftmann@31156
   613
  in (c', ty) end;
haftmann@33906
   614
haftmann@31957
   615
fun const_eqn thy = fst o const_typ_eqn thy;
haftmann@31156
   616
haftmann@35226
   617
fun const_abs_eqn thy = AxClass.unoverload_const thy o dest_Const o fst o strip_comb o snd
haftmann@35226
   618
  o dest_comb o fst o Logic.dest_equals o Thm.plain_prop_of;
haftmann@35226
   619
haftmann@35226
   620
fun mk_proj tyco vs ty abs rep =
haftmann@35226
   621
  let
haftmann@35226
   622
    val ty_abs = Type (tyco, map TFree vs);
haftmann@35226
   623
    val xarg = Var (("x", 0), ty);
haftmann@35226
   624
  in Logic.mk_equals (Const (rep, ty_abs --> ty) $ (Const (abs, ty --> ty_abs) $ xarg), xarg) end;
haftmann@35226
   625
haftmann@34895
   626
haftmann@34895
   627
(* technical transformations of code equations *)
haftmann@34895
   628
haftmann@34895
   629
fun expand_eta thy k thm =
haftmann@31962
   630
  let
haftmann@34895
   631
    val (lhs, rhs) = (Logic.dest_equals o Thm.plain_prop_of) thm;
haftmann@34895
   632
    val (_, args) = strip_comb lhs;
haftmann@34895
   633
    val l = if k = ~1
haftmann@34895
   634
      then (length o fst o strip_abs) rhs
haftmann@34895
   635
      else Int.max (0, k - length args);
haftmann@34895
   636
    val (raw_vars, _) = Term.strip_abs_eta l rhs;
haftmann@34895
   637
    val vars = burrow_fst (Name.variant_list (map (fst o fst) (Term.add_vars lhs [])))
haftmann@34895
   638
      raw_vars;
haftmann@34895
   639
    fun expand (v, ty) thm = Drule.fun_cong_rule thm
haftmann@34895
   640
      (Thm.cterm_of thy (Var ((v, 0), ty)));
haftmann@34895
   641
  in
haftmann@34895
   642
    thm
haftmann@34895
   643
    |> fold expand vars
haftmann@34895
   644
    |> Conv.fconv_rule Drule.beta_eta_conversion
haftmann@34895
   645
  end;
haftmann@34895
   646
haftmann@34895
   647
fun same_arity thy thms =
haftmann@34895
   648
  let
haftmann@34895
   649
    val num_args_of = length o snd o strip_comb o fst o Logic.dest_equals;
haftmann@34895
   650
    val k = fold (Integer.max o num_args_of o Thm.prop_of) thms 0;
haftmann@34895
   651
  in map (expand_eta thy k) thms end;
haftmann@34895
   652
haftmann@34895
   653
fun mk_desymbolization pre post mk vs =
haftmann@34895
   654
  let
haftmann@34895
   655
    val names = map (pre o fst o fst) vs
haftmann@34895
   656
      |> map (Name.desymbolize false)
haftmann@34895
   657
      |> Name.variant_list []
haftmann@34895
   658
      |> map post;
haftmann@34895
   659
  in map_filter (fn (((v, i), x), v') =>
haftmann@34895
   660
    if v = v' andalso i = 0 then NONE
haftmann@34895
   661
    else SOME (((v, i), x), mk ((v', 0), x))) (vs ~~ names)
haftmann@34895
   662
  end;
haftmann@34895
   663
haftmann@41006
   664
fun desymbolize_tvars thms =
haftmann@34895
   665
  let
haftmann@34895
   666
    val tvs = fold (Term.add_tvars o Thm.prop_of) thms [];
haftmann@34895
   667
    val tvar_subst = mk_desymbolization (unprefix "'") (prefix "'") TVar tvs;
haftmann@34895
   668
  in map (Thm.certify_instantiate (tvar_subst, [])) thms end;
haftmann@34895
   669
haftmann@41006
   670
fun desymbolize_vars thm =
haftmann@34895
   671
  let
haftmann@34895
   672
    val vs = Term.add_vars (Thm.prop_of thm) [];
haftmann@34895
   673
    val var_subst = mk_desymbolization I I Var vs;
haftmann@34895
   674
  in Thm.certify_instantiate ([], var_subst) thm end;
haftmann@34895
   675
haftmann@41006
   676
fun canonize_thms thy = desymbolize_tvars #> same_arity thy #> map desymbolize_vars;
haftmann@31156
   677
haftmann@34313
   678
haftmann@36112
   679
(* abstype certificates *)
haftmann@36112
   680
haftmann@36112
   681
fun check_abstype_cert thy proto_thm =
haftmann@36112
   682
  let
haftmann@36209
   683
    val thm = (AxClass.unoverload thy o meta_rewrite thy) proto_thm;
haftmann@36112
   684
    fun bad s = bad_thm (s ^ ":\n" ^ Display.string_of_thm_global thy thm);
haftmann@36112
   685
    val (lhs, rhs) = Logic.dest_equals (Thm.plain_prop_of thm)
haftmann@36112
   686
      handle TERM _ => bad "Not an equation"
haftmann@36112
   687
           | THM _ => bad "Not a proper equation";
haftmann@36209
   688
    val ((abs, raw_ty), ((rep, rep_ty), param)) = (apsnd (apfst dest_Const o dest_comb)
haftmann@36112
   689
        o apfst dest_Const o dest_comb) lhs
haftmann@36112
   690
      handle TERM _ => bad "Not an abstype certificate";
haftmann@36209
   691
    val _ = pairself (fn c => if (is_some o AxClass.class_of_param thy) c
haftmann@36209
   692
      then error ("Is a class parameter: " ^ string_of_const thy c) else ()) (abs, rep);
haftmann@36209
   693
    val _ = check_decl_ty thy (abs, raw_ty);
haftmann@36209
   694
    val _ = check_decl_ty thy (rep, rep_ty);
haftmann@41006
   695
    val _ = (fst o dest_Var) param
haftmann@36112
   696
      handle TERM _ => bad "Not an abstype certificate";
haftmann@36112
   697
    val _ = if param = rhs then () else bad "Not an abstype certificate";
haftmann@41049
   698
    val ((tyco, sorts), (abs, (vs, ty'))) = analyze_constructor thy (abs, Logic.unvarifyT_global raw_ty);
haftmann@36112
   699
    val ty = domain_type ty';
haftmann@41012
   700
    val (vs', _) = logical_typscheme thy (abs, ty');
haftmann@40969
   701
  in (tyco, (vs ~~ sorts, ((abs, (vs', ty)), (rep, thm)))) end;
haftmann@36112
   702
haftmann@36112
   703
haftmann@34313
   704
(* code equation certificates *)
haftmann@34313
   705
haftmann@34895
   706
fun build_head thy (c, ty) =
haftmann@34895
   707
  Thm.cterm_of thy (Logic.mk_equals (Free ("HEAD", ty), Const (c, ty)));
haftmann@34313
   708
haftmann@34895
   709
fun get_head thy cert_thm =
haftmann@34895
   710
  let
haftmann@34895
   711
    val [head] = (#hyps o Thm.crep_thm) cert_thm;
haftmann@34895
   712
    val (_, Const (c, ty)) = (Logic.dest_equals o Thm.term_of) head;
haftmann@34895
   713
  in (typscheme thy (c, ty), head) end;
haftmann@34895
   714
haftmann@35226
   715
fun typscheme_projection thy =
haftmann@35226
   716
  typscheme thy o dest_Const o fst o dest_comb o fst o Logic.dest_equals;
haftmann@35226
   717
haftmann@35226
   718
fun typscheme_abs thy =
haftmann@35226
   719
  typscheme thy o dest_Const o fst o strip_comb o snd o dest_comb o fst o Logic.dest_equals o Thm.prop_of;
haftmann@35226
   720
haftmann@35226
   721
fun constrain_thm thy vs sorts thm =
haftmann@35226
   722
  let
haftmann@35226
   723
    val mapping = map2 (fn (v, sort) => fn sort' =>
haftmann@35226
   724
      (v, Sorts.inter_sort (Sign.classes_of thy) (sort, sort'))) vs sorts;
haftmann@35226
   725
    val inst = map2 (fn (v, sort) => fn (_, sort') =>
haftmann@35226
   726
      (((v, 0), sort), TFree (v, sort'))) vs mapping;
haftmann@41049
   727
    val subst = (map_types o map_type_tfree)
haftmann@41049
   728
      (fn (v, _) => TFree (v, the (AList.lookup (op =) mapping v)));
haftmann@35226
   729
  in
haftmann@35226
   730
    thm
wenzelm@35845
   731
    |> Thm.varifyT_global
haftmann@35226
   732
    |> Thm.certify_instantiate (inst, [])
haftmann@35226
   733
    |> pair subst
haftmann@35226
   734
  end;
haftmann@35226
   735
haftmann@35226
   736
fun concretify_abs thy tyco abs_thm =
haftmann@35226
   737
  let
haftmann@41006
   738
    val (_, ((c, _), (_, cert))) = get_abstype_spec thy tyco;
haftmann@35226
   739
    val lhs = (fst o Logic.dest_equals o Thm.prop_of) abs_thm
haftmann@35226
   740
    val ty = fastype_of lhs;
haftmann@35226
   741
    val ty_abs = (fastype_of o snd o dest_comb) lhs;
haftmann@35226
   742
    val abs = Thm.cterm_of thy (Const (c, ty --> ty_abs));
haftmann@35226
   743
    val raw_concrete_thm = Drule.transitive_thm OF [Thm.symmetric cert, Thm.combination (Thm.reflexive abs) abs_thm];
wenzelm@35845
   744
  in (c, (Thm.varifyT_global o zero_var_indexes) raw_concrete_thm) end;
haftmann@35226
   745
haftmann@35226
   746
fun add_rhss_of_eqn thy t =
haftmann@35226
   747
  let
haftmann@35226
   748
    val (args, rhs) = (apfst (snd o strip_comb) o Logic.dest_equals o subst_signatures thy) t;
haftmann@35226
   749
    fun add_const (Const (c, ty)) = insert (op =) (c, Sign.const_typargs thy (c, ty))
haftmann@35226
   750
      | add_const _ = I
haftmann@39810
   751
    val add_consts = fold_aterms add_const
haftmann@39810
   752
  in add_consts rhs o fold add_consts args end;
haftmann@35226
   753
wenzelm@35845
   754
fun dest_eqn thy =
wenzelm@35845
   755
  apfst (snd o strip_comb) o Logic.dest_equals o subst_signatures thy o Logic.unvarify_global;
haftmann@35226
   756
haftmann@35226
   757
abstype cert = Equations of thm * bool list
haftmann@35226
   758
  | Projection of term * string
haftmann@35226
   759
  | Abstract of thm * string
haftmann@35226
   760
with
haftmann@34891
   761
haftmann@34891
   762
fun empty_cert thy c = 
haftmann@34891
   763
  let
haftmann@41009
   764
    val raw_ty = Logic.unvarifyT_global (const_typ thy c);
haftmann@41012
   765
    val (vs, _) = logical_typscheme thy (c, raw_ty);
haftmann@41009
   766
    val sortargs = case AxClass.class_of_param thy c
haftmann@41009
   767
     of SOME class => [[class]]
haftmann@41009
   768
      | NONE => (case get_type_of_constr_or_abstr thy c
haftmann@41009
   769
         of SOME (tyco, _) => (map snd o fst o the)
haftmann@41009
   770
              (AList.lookup (op =) ((snd o fst o get_type thy) tyco) c)
haftmann@41009
   771
          | NONE => replicate (length vs) []);
haftmann@41009
   772
    val the_sort = the o AList.lookup (op =) (map fst vs ~~ sortargs);
haftmann@41009
   773
    val ty = map_type_tfree (fn (v, _) => TFree (v, the_sort v)) raw_ty
haftmann@34895
   774
    val chead = build_head thy (c, ty);
haftmann@35226
   775
  in Equations (Thm.weaken chead Drule.dummy_thm, []) end;
haftmann@34891
   776
haftmann@34891
   777
fun cert_of_eqns thy c [] = empty_cert thy c
haftmann@34895
   778
  | cert_of_eqns thy c raw_eqns = 
haftmann@34313
   779
      let
haftmann@34895
   780
        val eqns = burrow_fst (canonize_thms thy) raw_eqns;
haftmann@34895
   781
        val _ = map (assert_eqn thy) eqns;
haftmann@34891
   782
        val (thms, propers) = split_list eqns;
haftmann@34895
   783
        val _ = map (fn thm => if c = const_eqn thy thm then ()
haftmann@34895
   784
          else error ("Wrong head of code equation,\nexpected constant "
haftmann@34895
   785
            ^ string_of_const thy c ^ "\n" ^ Display.string_of_thm_global thy thm)) thms;
haftmann@34891
   786
        fun tvars_of T = rev (Term.add_tvarsT T []);
haftmann@34891
   787
        val vss = map (tvars_of o snd o head_eqn) thms;
haftmann@34891
   788
        fun inter_sorts vs =
haftmann@34891
   789
          fold (curry (Sorts.inter_sort (Sign.classes_of thy)) o snd) vs [];
haftmann@34891
   790
        val sorts = map_transpose inter_sorts vss;
wenzelm@44211
   791
        val vts = Name.invent_names Name.context Name.aT sorts;
haftmann@41006
   792
        val thms' =
haftmann@34891
   793
          map2 (fn vs => Thm.certify_instantiate (vs ~~ map TFree vts, [])) vss thms;
haftmann@41006
   794
        val head_thm = Thm.symmetric (Thm.assume (build_head thy (head_eqn (hd thms'))));
haftmann@34313
   795
        fun head_conv ct = if can Thm.dest_comb ct
haftmann@34313
   796
          then Conv.fun_conv head_conv ct
haftmann@34313
   797
          else Conv.rewr_conv head_thm ct;
haftmann@34313
   798
        val rewrite_head = Conv.fconv_rule (Conv.arg1_conv head_conv);
haftmann@41006
   799
        val cert_thm = Conjunction.intr_balanced (map rewrite_head thms');
haftmann@35226
   800
      in Equations (cert_thm, propers) end;
haftmann@34313
   801
haftmann@35226
   802
fun cert_of_proj thy c tyco =
haftmann@34313
   803
  let
haftmann@41006
   804
    val (vs, ((abs, (_, ty)), (rep, _))) = get_abstype_spec thy tyco;
haftmann@35226
   805
    val _ = if c = rep then () else
haftmann@35226
   806
      error ("Wrong head of projection,\nexpected constant " ^ string_of_const thy rep);
haftmann@35226
   807
  in Projection (mk_proj tyco vs ty abs rep, tyco) end;
haftmann@34313
   808
haftmann@35226
   809
fun cert_of_abs thy tyco c raw_abs_thm =
haftmann@35226
   810
  let
haftmann@35226
   811
    val abs_thm = singleton (canonize_thms thy) raw_abs_thm;
haftmann@35226
   812
    val _ = assert_abs_eqn thy (SOME tyco) abs_thm;
haftmann@35226
   813
    val _ = if c = const_abs_eqn thy abs_thm then ()
haftmann@35226
   814
      else error ("Wrong head of abstract code equation,\nexpected constant "
haftmann@35226
   815
        ^ string_of_const thy c ^ "\n" ^ Display.string_of_thm_global thy abs_thm);
wenzelm@36638
   816
  in Abstract (Thm.legacy_freezeT abs_thm, tyco) end;
haftmann@34895
   817
haftmann@35226
   818
fun constrain_cert thy sorts (Equations (cert_thm, propers)) =
haftmann@35226
   819
      let
haftmann@35226
   820
        val ((vs, _), head) = get_head thy cert_thm;
haftmann@35226
   821
        val (subst, cert_thm') = cert_thm
haftmann@35226
   822
          |> Thm.implies_intr head
haftmann@35226
   823
          |> constrain_thm thy vs sorts;
haftmann@35226
   824
        val head' = Thm.term_of head
haftmann@35226
   825
          |> subst
haftmann@35226
   826
          |> Thm.cterm_of thy;
haftmann@35226
   827
        val cert_thm'' = cert_thm'
haftmann@35226
   828
          |> Thm.elim_implies (Thm.assume head');
haftmann@35226
   829
      in Equations (cert_thm'', propers) end
haftmann@35226
   830
  | constrain_cert thy _ (cert as Projection _) =
haftmann@35226
   831
      cert
haftmann@35226
   832
  | constrain_cert thy sorts (Abstract (abs_thm, tyco)) =
haftmann@35226
   833
      Abstract (snd (constrain_thm thy (fst (typscheme_abs thy abs_thm)) sorts abs_thm), tyco);
haftmann@34895
   834
haftmann@35226
   835
fun typscheme_of_cert thy (Equations (cert_thm, _)) =
haftmann@35226
   836
      fst (get_head thy cert_thm)
haftmann@35226
   837
  | typscheme_of_cert thy (Projection (proj, _)) =
haftmann@35226
   838
      typscheme_projection thy proj
haftmann@35226
   839
  | typscheme_of_cert thy (Abstract (abs_thm, _)) =
haftmann@35226
   840
      typscheme_abs thy abs_thm;
haftmann@34895
   841
haftmann@35226
   842
fun typargs_deps_of_cert thy (Equations (cert_thm, propers)) =
haftmann@35226
   843
      let
haftmann@35226
   844
        val vs = (fst o fst) (get_head thy cert_thm);
haftmann@35226
   845
        val equations = if null propers then [] else
haftmann@35226
   846
          Thm.prop_of cert_thm
haftmann@35226
   847
          |> Logic.dest_conjunction_balanced (length propers);
haftmann@35226
   848
      in (vs, fold (add_rhss_of_eqn thy) equations []) end
haftmann@41006
   849
  | typargs_deps_of_cert thy (Projection (t, _)) =
haftmann@35226
   850
      (fst (typscheme_projection thy t), add_rhss_of_eqn thy t [])
haftmann@35226
   851
  | typargs_deps_of_cert thy (Abstract (abs_thm, tyco)) =
haftmann@35226
   852
      let
haftmann@35226
   853
        val vs = fst (typscheme_abs thy abs_thm);
haftmann@35226
   854
        val (_, concrete_thm) = concretify_abs thy tyco abs_thm;
haftmann@36202
   855
      in (vs, add_rhss_of_eqn thy (map_types Logic.unvarifyT_global (Thm.prop_of concrete_thm)) []) end;
haftmann@35226
   856
haftmann@35226
   857
fun equations_of_cert thy (cert as Equations (cert_thm, propers)) =
haftmann@35226
   858
      let
haftmann@35226
   859
        val tyscm = typscheme_of_cert thy cert;
haftmann@35226
   860
        val thms = if null propers then [] else
haftmann@35226
   861
          cert_thm
wenzelm@35624
   862
          |> Local_Defs.expand [snd (get_head thy cert_thm)]
wenzelm@35845
   863
          |> Thm.varifyT_global
haftmann@35226
   864
          |> Conjunction.elim_balanced (length propers);
haftmann@36209
   865
        fun abstractions (args, rhs) = (map (rpair NONE) args, (rhs, NONE));
haftmann@36209
   866
      in (tyscm, map (abstractions o dest_eqn thy o Thm.prop_of) thms ~~ (map SOME thms ~~ propers)) end
haftmann@35226
   867
  | equations_of_cert thy (Projection (t, tyco)) =
haftmann@35226
   868
      let
haftmann@35226
   869
        val (_, ((abs, _), _)) = get_abstype_spec thy tyco;
haftmann@35226
   870
        val tyscm = typscheme_projection thy t;
wenzelm@35845
   871
        val t' = map_types Logic.varifyT_global t;
haftmann@36209
   872
        fun abstractions (args, rhs) = (map (rpair (SOME abs)) args, (rhs, NONE));
haftmann@36209
   873
      in (tyscm, [((abstractions o dest_eqn thy) t', (NONE, true))]) end
haftmann@35226
   874
  | equations_of_cert thy (Abstract (abs_thm, tyco)) =
haftmann@35226
   875
      let
haftmann@35226
   876
        val tyscm = typscheme_abs thy abs_thm;
haftmann@35226
   877
        val (abs, concrete_thm) = concretify_abs thy tyco abs_thm;
haftmann@36209
   878
        fun abstractions (args, rhs) = (map (rpair NONE) args, (rhs, (SOME abs)));
wenzelm@35845
   879
      in
haftmann@36209
   880
        (tyscm, [((abstractions o dest_eqn thy o Thm.prop_of) concrete_thm,
haftmann@36209
   881
          (SOME (Thm.varifyT_global abs_thm), true))])
wenzelm@35845
   882
      end;
haftmann@35226
   883
haftmann@35226
   884
fun pretty_cert thy (cert as Equations _) =
haftmann@35226
   885
      (map_filter (Option.map (Display.pretty_thm_global thy o AxClass.overload thy) o fst o snd)
haftmann@35226
   886
         o snd o equations_of_cert thy) cert
haftmann@35226
   887
  | pretty_cert thy (Projection (t, _)) =
wenzelm@35845
   888
      [Syntax.pretty_term_global thy (map_types Logic.varifyT_global t)]
haftmann@41006
   889
  | pretty_cert thy (Abstract (abs_thm, _)) =
wenzelm@35845
   890
      [(Display.pretty_thm_global thy o AxClass.overload thy o Thm.varifyT_global) abs_thm];
haftmann@35226
   891
haftmann@35226
   892
fun bare_thms_of_cert thy (cert as Equations _) =
haftmann@35226
   893
      (map_filter (fn (_, (some_thm, proper)) => if proper then some_thm else NONE)
haftmann@35226
   894
        o snd o equations_of_cert thy) cert
haftmann@35376
   895
  | bare_thms_of_cert thy (Projection _) = []
haftmann@35376
   896
  | bare_thms_of_cert thy (Abstract (abs_thm, tyco)) =
wenzelm@35845
   897
      [Thm.varifyT_global (snd (concretify_abs thy tyco abs_thm))];
haftmann@34895
   898
haftmann@34895
   899
end;
haftmann@34891
   900
haftmann@34313
   901
haftmann@35226
   902
(* code certificate access *)
haftmann@34313
   903
haftmann@35226
   904
fun retrieve_raw thy c =
haftmann@35226
   905
  Symtab.lookup ((the_functions o the_exec) thy) c
haftmann@35226
   906
  |> Option.map (snd o fst)
haftmann@37435
   907
  |> the_default empty_fun_spec
haftmann@35226
   908
haftmann@35226
   909
fun get_cert thy f c = case retrieve_raw thy c
haftmann@37435
   910
 of Default (_, eqns_lazy) => Lazy.force eqns_lazy
haftmann@35226
   911
      |> (map o apfst) (Thm.transfer thy)
haftmann@35226
   912
      |> f
haftmann@35226
   913
      |> (map o apfst) (AxClass.unoverload thy)
haftmann@35226
   914
      |> cert_of_eqns thy c
haftmann@35226
   915
  | Eqns eqns => eqns
haftmann@35226
   916
      |> (map o apfst) (Thm.transfer thy)
haftmann@35226
   917
      |> f
haftmann@35226
   918
      |> (map o apfst) (AxClass.unoverload thy)
haftmann@35226
   919
      |> cert_of_eqns thy c
haftmann@35226
   920
  | Proj (_, tyco) =>
haftmann@35226
   921
      cert_of_proj thy c tyco
haftmann@35226
   922
  | Abstr (abs_thm, tyco) => abs_thm
haftmann@35226
   923
      |> Thm.transfer thy
haftmann@35226
   924
      |> AxClass.unoverload thy
haftmann@35226
   925
      |> cert_of_abs thy tyco c;
haftmann@31962
   926
haftmann@31962
   927
haftmann@31962
   928
(* cases *)
haftmann@31156
   929
haftmann@31156
   930
fun case_certificate thm =
haftmann@31156
   931
  let
haftmann@31156
   932
    val ((head, raw_case_expr), cases) = (apfst Logic.dest_equals
haftmann@32640
   933
      o apsnd Logic.dest_conjunctions o Logic.dest_implies o Thm.plain_prop_of) thm;
haftmann@31156
   934
    val _ = case head of Free _ => true
haftmann@31156
   935
      | Var _ => true
haftmann@31156
   936
      | _ => raise TERM ("case_cert", []);
haftmann@31156
   937
    val ([(case_var, _)], case_expr) = Term.strip_abs_eta 1 raw_case_expr;
haftmann@31156
   938
    val (Const (case_const, _), raw_params) = strip_comb case_expr;
haftmann@31156
   939
    val n = find_index (fn Free (v, _) => v = case_var | _ => false) raw_params;
haftmann@31156
   940
    val _ = if n = ~1 then raise TERM ("case_cert", []) else ();
haftmann@31156
   941
    val params = map (fst o dest_Var) (nth_drop n raw_params);
haftmann@31156
   942
    fun dest_case t =
haftmann@31156
   943
      let
haftmann@31156
   944
        val (head' $ t_co, rhs) = Logic.dest_equals t;
haftmann@31156
   945
        val _ = if head' = head then () else raise TERM ("case_cert", []);
haftmann@31156
   946
        val (Const (co, _), args) = strip_comb t_co;
haftmann@31156
   947
        val (Var (param, _), args') = strip_comb rhs;
haftmann@31156
   948
        val _ = if args' = args then () else raise TERM ("case_cert", []);
haftmann@31156
   949
      in (param, co) end;
haftmann@31156
   950
    fun analyze_cases cases =
haftmann@31156
   951
      let
haftmann@31156
   952
        val co_list = fold (AList.update (op =) o dest_case) cases [];
haftmann@31156
   953
      in map (the o AList.lookup (op =) co_list) params end;
haftmann@31156
   954
    fun analyze_let t =
haftmann@31156
   955
      let
haftmann@31156
   956
        val (head' $ arg, Var (param', _) $ arg') = Logic.dest_equals t;
haftmann@31156
   957
        val _ = if head' = head then () else raise TERM ("case_cert", []);
haftmann@31156
   958
        val _ = if arg' = arg then () else raise TERM ("case_cert", []);
haftmann@31156
   959
        val _ = if [param'] = params then () else raise TERM ("case_cert", []);
haftmann@31156
   960
      in [] end;
haftmann@31156
   961
    fun analyze (cases as [let_case]) =
haftmann@31156
   962
          (analyze_cases cases handle Bind => analyze_let let_case)
haftmann@31156
   963
      | analyze cases = analyze_cases cases;
haftmann@31156
   964
  in (case_const, (n, analyze cases)) end;
haftmann@31156
   965
haftmann@31156
   966
fun case_cert thm = case_certificate thm
haftmann@31156
   967
  handle Bind => error "bad case certificate"
haftmann@31156
   968
       | TERM _ => error "bad case certificate";
haftmann@31156
   969
haftmann@37413
   970
fun get_case_scheme thy = Option.map fst o Symtab.lookup ((fst o the_cases o the_exec) thy);
haftmann@37413
   971
fun get_case_cong thy = Option.map snd o Symtab.lookup ((fst o the_cases o the_exec) thy);
haftmann@31156
   972
haftmann@31962
   973
val undefineds = Symtab.keys o snd o the_cases o the_exec;
haftmann@24219
   974
haftmann@25312
   975
haftmann@31962
   976
(* diagnostic *)
haftmann@24219
   977
haftmann@24219
   978
fun print_codesetup thy =
haftmann@24219
   979
  let
wenzelm@43231
   980
    val ctxt = Proof_Context.init_global thy;
haftmann@24844
   981
    val exec = the_exec thy;
haftmann@35226
   982
    fun pretty_equations const thms =
haftmann@24219
   983
      (Pretty.block o Pretty.fbreaks) (
haftmann@35226
   984
        Pretty.str (string_of_const thy const) :: map (Display.pretty_thm ctxt) thms
haftmann@24219
   985
      );
haftmann@37435
   986
    fun pretty_function (const, Default (_, eqns_lazy)) = pretty_equations const (map fst (Lazy.force eqns_lazy))
haftmann@35226
   987
      | pretty_function (const, Eqns eqns) = pretty_equations const (map fst eqns)
haftmann@35226
   988
      | pretty_function (const, Proj (proj, _)) = Pretty.block
haftmann@35226
   989
          [Pretty.str (string_of_const thy const), Pretty.fbrk, Syntax.pretty_term ctxt proj]
haftmann@35226
   990
      | pretty_function (const, Abstr (thm, _)) = pretty_equations const [thm];
haftmann@35226
   991
    fun pretty_typ (tyco, vs) = Pretty.str
haftmann@35226
   992
      (string_of_typ thy (Type (tyco, map TFree vs)));
haftmann@35226
   993
    fun pretty_typspec (typ, (cos, abstract)) = if null cos
haftmann@35226
   994
      then pretty_typ typ
haftmann@35226
   995
      else (Pretty.block o Pretty.breaks) (
haftmann@35226
   996
        pretty_typ typ
haftmann@35226
   997
        :: Pretty.str "="
haftmann@35226
   998
        :: (if abstract then [Pretty.str "(abstract)"] else [])
haftmann@40969
   999
        @ separate (Pretty.str "|") (map (fn (c, (_, [])) => Pretty.str (string_of_const thy c)
haftmann@40969
  1000
             | (c, (_, tys)) =>
haftmann@35226
  1001
                 (Pretty.block o Pretty.breaks)
haftmann@35226
  1002
                    (Pretty.str (string_of_const thy c)
haftmann@35226
  1003
                      :: Pretty.str "of"
haftmann@35226
  1004
                      :: map (Pretty.quote o Syntax.pretty_typ_global thy) tys)) cos)
haftmann@35226
  1005
      );
haftmann@37413
  1006
    fun pretty_case (const, ((_, (_, [])), _)) = Pretty.str (string_of_const thy const)
haftmann@37413
  1007
      | pretty_case (const, ((_, (_, cos)), _)) = (Pretty.block o Pretty.breaks) [
haftmann@34901
  1008
          Pretty.str (string_of_const thy const), Pretty.str "with",
haftmann@34901
  1009
          (Pretty.block o Pretty.commas o map (Pretty.str o string_of_const thy)) cos];
haftmann@35226
  1010
    val functions = the_functions exec
haftmann@24423
  1011
      |> Symtab.dest
haftmann@28695
  1012
      |> (map o apsnd) (snd o fst)
haftmann@24219
  1013
      |> sort (string_ord o pairself fst);
haftmann@35299
  1014
    val datatypes = the_types exec
haftmann@24219
  1015
      |> Symtab.dest
haftmann@35226
  1016
      |> map (fn (tyco, (_, (vs, spec)) :: _) =>
haftmann@35226
  1017
          ((tyco, vs), constructors_of spec))
haftmann@35226
  1018
      |> sort (string_ord o pairself (fst o fst));
haftmann@34901
  1019
    val cases = Symtab.dest ((fst o the_cases o the_exec) thy);
haftmann@34901
  1020
    val undefineds = Symtab.keys ((snd o the_cases o the_exec) thy);
haftmann@24219
  1021
  in
haftmann@24219
  1022
    (Pretty.writeln o Pretty.chunks) [
haftmann@24219
  1023
      Pretty.block (
haftmann@34901
  1024
        Pretty.str "code equations:" :: Pretty.fbrk
haftmann@35226
  1025
        :: (Pretty.fbreaks o map pretty_function) functions
haftmann@24219
  1026
      ),
haftmann@25968
  1027
      Pretty.block (
haftmann@34901
  1028
        Pretty.str "datatypes:" :: Pretty.fbrk
haftmann@35226
  1029
        :: (Pretty.fbreaks o map pretty_typspec) datatypes
haftmann@34901
  1030
      ),
haftmann@34901
  1031
      Pretty.block (
haftmann@34901
  1032
        Pretty.str "cases:" :: Pretty.fbrk
haftmann@34901
  1033
        :: (Pretty.fbreaks o map pretty_case) cases
haftmann@34901
  1034
      ),
haftmann@34901
  1035
      Pretty.block (
haftmann@34901
  1036
        Pretty.str "undefined:" :: Pretty.fbrk
haftmann@34901
  1037
        :: (Pretty.commas o map (Pretty.str o string_of_const thy)) undefineds
haftmann@24219
  1038
      )
haftmann@24219
  1039
    ]
haftmann@24219
  1040
  end;
haftmann@24219
  1041
haftmann@24219
  1042
haftmann@31962
  1043
(** declaring executable ingredients **)
haftmann@24219
  1044
haftmann@33906
  1045
(* constant signatures *)
haftmann@33906
  1046
haftmann@33906
  1047
fun add_type tyco thy =
haftmann@33906
  1048
  case Symtab.lookup ((snd o #types o Type.rep_tsig o Sign.tsig_of) thy) tyco
haftmann@33906
  1049
   of SOME (Type.Abbreviation (vs, _, _)) =>
haftmann@34160
  1050
          (map_exec_purge o map_signatures o apfst)
haftmann@33906
  1051
            (Symtab.update (tyco, length vs)) thy
haftmann@33906
  1052
    | _ => error ("No such type abbreviation: " ^ quote tyco);
haftmann@33906
  1053
haftmann@33906
  1054
fun add_type_cmd s thy = add_type (Sign.intern_type thy s) thy;
haftmann@33906
  1055
haftmann@33906
  1056
fun gen_add_signature prep_const prep_signature (raw_c, raw_ty) thy =
haftmann@33906
  1057
  let
haftmann@33906
  1058
    val c = prep_const thy raw_c;
haftmann@33906
  1059
    val ty = prep_signature thy raw_ty;
haftmann@33906
  1060
    val ty' = expand_signature thy ty;
haftmann@33906
  1061
    val ty'' = Sign.the_const_type thy c;
haftmann@33906
  1062
    val _ = if typ_equiv (ty', ty'') then () else
haftmann@33906
  1063
      error ("Illegal constant signature: " ^ Syntax.string_of_typ_global thy ty);
haftmann@33906
  1064
  in
haftmann@33906
  1065
    thy
haftmann@34160
  1066
    |> (map_exec_purge o map_signatures o apsnd) (Symtab.update (c, ty))
haftmann@33906
  1067
  end;
haftmann@33906
  1068
haftmann@33906
  1069
val add_signature = gen_add_signature (K I) cert_signature;
haftmann@33906
  1070
val add_signature_cmd = gen_add_signature read_const read_signature;
haftmann@33906
  1071
haftmann@33906
  1072
haftmann@31962
  1073
(* code equations *)
haftmann@31962
  1074
haftmann@35226
  1075
fun gen_add_eqn default (raw_thm, proper) thy =
haftmann@33075
  1076
  let
haftmann@35226
  1077
    val thm = Thm.close_derivation raw_thm;
haftmann@35226
  1078
    val c = const_eqn thy thm;
haftmann@37435
  1079
    fun update_subsume thy (thm, proper) eqns = 
haftmann@37435
  1080
      let
haftmann@40057
  1081
        val args_of = snd o chop_while is_Var o rev o snd o strip_comb
haftmann@40037
  1082
          o map_types Type.strip_sorts o fst o Logic.dest_equals o Thm.plain_prop_of;
haftmann@37435
  1083
        val args = args_of thm;
haftmann@37435
  1084
        val incr_idx = Logic.incr_indexes ([], Thm.maxidx_of thm + 1);
haftmann@40040
  1085
        fun matches_args args' =
haftmann@40040
  1086
          let
haftmann@40040
  1087
            val k = length args' - length args
haftmann@40040
  1088
          in if k >= 0
haftmann@40040
  1089
            then Pattern.matchess thy (args, (map incr_idx o drop k) args')
haftmann@40040
  1090
            else false
haftmann@40040
  1091
          end;
haftmann@37435
  1092
        fun drop (thm', proper') = if (proper orelse not proper')
haftmann@37435
  1093
          andalso matches_args (args_of thm') then 
haftmann@37435
  1094
            (warning ("Code generator: dropping subsumed code equation\n" ^
haftmann@37435
  1095
                Display.string_of_thm_global thy thm'); true)
haftmann@37435
  1096
          else false;
haftmann@37435
  1097
      in (thm, proper) :: filter_out drop eqns end;
haftmann@37435
  1098
    fun natural_order thy_ref eqns =
haftmann@37435
  1099
      (eqns, Lazy.lazy (fn () => fold (update_subsume (Theory.deref thy_ref)) eqns []))
haftmann@37435
  1100
    fun add_eqn' true (Default (eqns, _)) =
haftmann@37435
  1101
          Default (natural_order (Theory.check_thy thy) ((thm, proper) :: eqns))
haftmann@37435
  1102
          (*this restores the natural order and drops syntactic redundancies*)
haftmann@40040
  1103
      | add_eqn' true fun_spec = fun_spec
haftmann@40040
  1104
      | add_eqn' false (Eqns eqns) = Eqns (update_subsume thy (thm, proper) eqns)
haftmann@35226
  1105
      | add_eqn' false _ = Eqns [(thm, proper)];
haftmann@35226
  1106
  in change_fun_spec false c (add_eqn' default) thy end;
haftmann@31962
  1107
haftmann@31962
  1108
fun add_eqn thm thy =
haftmann@31962
  1109
  gen_add_eqn false (mk_eqn thy (thm, true)) thy;
haftmann@31962
  1110
haftmann@31962
  1111
fun add_warning_eqn thm thy =
haftmann@31962
  1112
  case mk_eqn_warning thy thm
haftmann@31962
  1113
   of SOME eqn => gen_add_eqn false eqn thy
haftmann@31962
  1114
    | NONE => thy;
haftmann@31962
  1115
haftmann@37400
  1116
fun add_nbe_eqn thm thy =
haftmann@37400
  1117
  gen_add_eqn false (mk_eqn thy (thm, false)) thy;
haftmann@37400
  1118
haftmann@31962
  1119
fun add_default_eqn thm thy =
haftmann@31962
  1120
  case mk_eqn_liberal thy thm
haftmann@31962
  1121
   of SOME eqn => gen_add_eqn true eqn thy
haftmann@31962
  1122
    | NONE => thy;
haftmann@31962
  1123
haftmann@31962
  1124
val add_default_eqn_attribute = Thm.declaration_attribute
haftmann@31962
  1125
  (fn thm => Context.mapping (add_default_eqn thm) I);
haftmann@31962
  1126
val add_default_eqn_attrib = Attrib.internal (K add_default_eqn_attribute);
haftmann@31962
  1127
haftmann@37400
  1128
fun add_nbe_default_eqn thm thy =
haftmann@37400
  1129
  gen_add_eqn true (mk_eqn thy (thm, false)) thy;
haftmann@37400
  1130
haftmann@37400
  1131
val add_nbe_default_eqn_attribute = Thm.declaration_attribute
haftmann@37400
  1132
  (fn thm => Context.mapping (add_nbe_default_eqn thm) I);
haftmann@37400
  1133
val add_nbe_default_eqn_attrib = Attrib.internal (K add_nbe_default_eqn_attribute);
haftmann@37400
  1134
haftmann@35226
  1135
fun add_abs_eqn raw_thm thy =
haftmann@35226
  1136
  let
haftmann@35226
  1137
    val (abs_thm, tyco) = (apfst Thm.close_derivation o mk_abs_eqn thy) raw_thm;
haftmann@35226
  1138
    val c = const_abs_eqn thy abs_thm;
haftmann@35226
  1139
  in change_fun_spec false c (K (Abstr (abs_thm, tyco))) thy end;
haftmann@35226
  1140
haftmann@31962
  1141
fun del_eqn thm thy = case mk_eqn_liberal thy thm
haftmann@35226
  1142
 of SOME (thm, _) => let
haftmann@41006
  1143
        fun del_eqn' (Default _) = empty_fun_spec
haftmann@35226
  1144
          | del_eqn' (Eqns eqns) =
haftmann@35226
  1145
              Eqns (filter_out (fn (thm', _) => Thm.eq_thm_prop (thm, thm')) eqns)
haftmann@35226
  1146
          | del_eqn' spec = spec
haftmann@35226
  1147
      in change_fun_spec true (const_eqn thy thm) del_eqn' thy end
haftmann@31962
  1148
  | NONE => thy;
haftmann@31962
  1149
haftmann@35226
  1150
fun del_eqns c = change_fun_spec true c (K empty_fun_spec);
haftmann@34239
  1151
haftmann@34239
  1152
haftmann@34239
  1153
(* cases *)
haftmann@34239
  1154
haftmann@41006
  1155
fun case_cong thy case_const (num_args, (pos, _)) =
haftmann@37413
  1156
  let
wenzelm@44208
  1157
    val ([x, y], ctxt) = fold_map Name.variant ["A", "A'"] Name.context;
wenzelm@44208
  1158
    val (zs, _) = fold_map Name.variant (replicate (num_args - 1) "") ctxt;
haftmann@37413
  1159
    val (ws, vs) = chop pos zs;
haftmann@37423
  1160
    val T = Logic.unvarifyT_global (Sign.the_const_type thy case_const);
wenzelm@41093
  1161
    val Ts = binder_types T;
haftmann@37413
  1162
    val T_cong = nth Ts pos;
haftmann@37413
  1163
    fun mk_prem z = Free (z, T_cong);
haftmann@37413
  1164
    fun mk_concl z = list_comb (Const (case_const, T), map2 (curry Free) (ws @ z :: vs) Ts);
haftmann@37413
  1165
    val (prem, concl) = pairself Logic.mk_equals (pairself mk_prem (x, y), pairself mk_concl (x, y));
haftmann@37521
  1166
    fun tac { context, prems } = Simplifier.rewrite_goals_tac prems
wenzelm@43231
  1167
      THEN ALLGOALS (Proof_Context.fact_tac [Drule.reflexive_thm]);
haftmann@37413
  1168
  in Skip_Proof.prove_global thy (x :: y :: zs) [prem] concl tac end;
haftmann@37413
  1169
haftmann@34239
  1170
fun add_case thm thy =
haftmann@34239
  1171
  let
haftmann@44505
  1172
    val (case_const, (k, cos)) = case_cert thm;
haftmann@44505
  1173
    val _ = case filter_out (is_constr thy) cos
haftmann@34239
  1174
     of [] => ()
haftmann@34239
  1175
      | cs => error ("Non-constructor(s) in case certificate: " ^ commas (map quote cs));
haftmann@44505
  1176
    val entry = (1 + Int.max (1, length cos), (k, cos));
haftmann@44505
  1177
    fun register_case cong = (map_cases o apfst)
haftmann@44505
  1178
      (Symtab.update (case_const, (entry, cong)));
haftmann@44505
  1179
    fun register_for_constructors (Constructors (cos', cases)) =
haftmann@44505
  1180
         Constructors (cos',
haftmann@44505
  1181
           if exists (fn (co, _) => member (op =) cos co) cos'
haftmann@44505
  1182
           then insert (op =) case_const cases
haftmann@44505
  1183
           else cases)
haftmann@44505
  1184
      | register_for_constructors (x as Abstractor _) = x;
haftmann@44505
  1185
    val register_type = (map_typs o Symtab.map)
haftmann@44505
  1186
      (K ((map o apsnd o apsnd) register_for_constructors));
haftmann@37413
  1187
  in
haftmann@37413
  1188
    thy
haftmann@37413
  1189
    |> Theory.checkpoint
haftmann@37413
  1190
    |> `(fn thy => case_cong thy case_const entry)
haftmann@44505
  1191
    |-> (fn cong => map_exec_purge (register_case cong #> register_type))
haftmann@37413
  1192
  end;
haftmann@34239
  1193
haftmann@34239
  1194
fun add_undefined c thy =
haftmann@34239
  1195
  (map_exec_purge o map_cases o apsnd) (Symtab.update (c, ())) thy;
haftmann@34239
  1196
haftmann@34239
  1197
haftmann@35299
  1198
(* types *)
haftmann@34239
  1199
haftmann@35299
  1200
fun register_type (tyco, vs_spec) thy =
haftmann@34239
  1201
  let
haftmann@35226
  1202
    val (old_constrs, some_old_proj) =
haftmann@35299
  1203
      case these (Symtab.lookup ((the_types o the_exec) thy) tyco)
haftmann@44505
  1204
       of (_, (_, Constructors (cos, _))) :: _ => (map fst cos, NONE)
haftmann@36209
  1205
        | (_, (_, Abstractor ((co, _), (proj, _)))) :: _ => ([co], SOME proj)
haftmann@44507
  1206
        | [] => ([], NONE);
haftmann@44507
  1207
    val outdated_funs1 = (map fst o fst o constructors_of o snd) vs_spec;
haftmann@44507
  1208
    val outdated_funs2 = case some_old_proj
haftmann@44507
  1209
     of NONE => []
haftmann@35226
  1210
      | SOME old_proj => Symtab.fold
haftmann@36209
  1211
          (fn (c, ((_, spec), _)) =>
haftmann@36209
  1212
            if member (op =) (the_list (associated_abstype spec)) tyco
haftmann@35226
  1213
            then insert (op =) c else I)
haftmann@44508
  1214
            ((the_functions o the_exec) thy) [old_proj];
haftmann@34239
  1215
    fun drop_outdated_cases cases = fold Symtab.delete_safe
haftmann@37413
  1216
      (Symtab.fold (fn (c, ((_, (_, cos)), _)) =>
haftmann@35226
  1217
        if exists (member (op =) old_constrs) cos
haftmann@34239
  1218
          then insert (op =) c else I) cases []) cases;
haftmann@34239
  1219
  in
haftmann@34239
  1220
    thy
haftmann@44507
  1221
    |> fold del_eqns (outdated_funs1 @ outdated_funs2)
haftmann@34239
  1222
    |> map_exec_purge
haftmann@35226
  1223
        ((map_typs o Symtab.map_default (tyco, [])) (cons (serial (), vs_spec))
haftmann@34239
  1224
        #> (map_cases o apfst) drop_outdated_cases)
haftmann@34239
  1225
  end;
haftmann@34239
  1226
haftmann@35299
  1227
fun unoverload_const_typ thy (c, ty) = (AxClass.unoverload_const thy (c, ty), ty);
haftmann@34239
  1228
haftmann@35299
  1229
structure Datatype_Interpretation =
haftmann@35299
  1230
  Interpretation(type T = string * serial val eq = eq_snd (op =) : T * T -> bool);
haftmann@35299
  1231
haftmann@35299
  1232
fun datatype_interpretation f = Datatype_Interpretation.interpretation
haftmann@40969
  1233
  (fn (tyco, _) => fn thy => f (tyco, fst (get_type thy tyco)) thy);
haftmann@35226
  1234
haftmann@35226
  1235
fun add_datatype proto_constrs thy =
haftmann@34239
  1236
  let
haftmann@35226
  1237
    val constrs = map (unoverload_const_typ thy) proto_constrs;
haftmann@35226
  1238
    val (tyco, (vs, cos)) = constrset_of_consts thy constrs;
haftmann@35226
  1239
  in
haftmann@35226
  1240
    thy
haftmann@44505
  1241
    |> register_type (tyco, (vs, Constructors (cos, [])))
haftmann@35299
  1242
    |> Datatype_Interpretation.data (tyco, serial ())
haftmann@35226
  1243
  end;
haftmann@34239
  1244
haftmann@35226
  1245
fun add_datatype_cmd raw_constrs thy =
haftmann@35226
  1246
  add_datatype (map (read_bare_const thy) raw_constrs) thy;
haftmann@35226
  1247
haftmann@35299
  1248
structure Abstype_Interpretation =
haftmann@35299
  1249
  Interpretation(type T = string * serial val eq = eq_snd (op =) : T * T -> bool);
haftmann@35299
  1250
haftmann@35299
  1251
fun abstype_interpretation f = Abstype_Interpretation.interpretation
haftmann@35299
  1252
  (fn (tyco, _) => fn thy => f (tyco, get_abstype_spec thy tyco) thy);
haftmann@35299
  1253
haftmann@36112
  1254
fun add_abstype proto_thm thy =
haftmann@35226
  1255
  let
haftmann@40969
  1256
    val (tyco, (vs, (abs_ty as (abs, (_, ty)), (rep, cert)))) =
haftmann@36209
  1257
      error_thm (check_abstype_cert thy) proto_thm;
haftmann@35226
  1258
  in
haftmann@35226
  1259
    thy
haftmann@36112
  1260
    |> register_type (tyco, (vs, Abstractor (abs_ty, (rep, cert))))
haftmann@36112
  1261
    |> change_fun_spec false rep ((K o Proj)
haftmann@36112
  1262
        (map_types Logic.varifyT_global (mk_proj tyco vs ty abs rep), tyco))
haftmann@36112
  1263
    |> Abstype_Interpretation.data (tyco, serial ())
haftmann@35226
  1264
  end;
haftmann@35226
  1265
haftmann@35226
  1266
haftmann@35226
  1267
(** infrastructure **)
haftmann@34239
  1268
wenzelm@41720
  1269
(* cf. src/HOL/Tools/recfun_codegen.ML *)
haftmann@32062
  1270
wenzelm@33522
  1271
structure Code_Target_Attr = Theory_Data
wenzelm@33522
  1272
(
haftmann@31998
  1273
  type T = (string -> thm -> theory -> theory) option;
haftmann@31998
  1274
  val empty = NONE;
haftmann@31998
  1275
  val extend = I;
wenzelm@41741
  1276
  val merge = merge_options;
haftmann@31998
  1277
);
haftmann@31998
  1278
haftmann@32062
  1279
fun set_code_target_attr f = Code_Target_Attr.map (K (SOME f));
haftmann@32062
  1280
haftmann@32062
  1281
fun code_target_attr prefix thm thy =
haftmann@32062
  1282
  let
haftmann@32062
  1283
    val attr = the_default ((K o K) I) (Code_Target_Attr.get thy);
haftmann@32062
  1284
  in thy |> add_warning_eqn thm |> attr prefix thm end;
haftmann@35226
  1285
haftmann@35226
  1286
haftmann@32062
  1287
(* setup *)
haftmann@31998
  1288
haftmann@31962
  1289
val _ = Context.>> (Context.map_theory
haftmann@31962
  1290
  (let
haftmann@31962
  1291
    fun mk_attribute f = Thm.declaration_attribute (fn thm => Context.mapping (f thm) I);
haftmann@31998
  1292
    val code_attribute_parser =
haftmann@31998
  1293
      Args.del |-- Scan.succeed (mk_attribute del_eqn)
haftmann@31998
  1294
      || Args.$$$ "nbe" |-- Scan.succeed (mk_attribute add_nbe_eqn)
haftmann@36112
  1295
      || Args.$$$ "abstype" |-- Scan.succeed (mk_attribute add_abstype)
haftmann@35226
  1296
      || Args.$$$ "abstract" |-- Scan.succeed (mk_attribute add_abs_eqn)
haftmann@31998
  1297
      || (Args.$$$ "target" |-- Args.colon |-- Args.name >>
haftmann@32062
  1298
           (mk_attribute o code_target_attr))
haftmann@31998
  1299
      || Scan.succeed (mk_attribute add_warning_eqn);
haftmann@31962
  1300
  in
haftmann@35299
  1301
    Datatype_Interpretation.init
haftmann@31998
  1302
    #> Attrib.setup (Binding.name "code") (Scan.lift code_attribute_parser)
haftmann@31998
  1303
        "declare theorems for code generation"
haftmann@31962
  1304
  end));
haftmann@31962
  1305
haftmann@24219
  1306
end; (*struct*)
haftmann@24219
  1307
haftmann@24219
  1308
haftmann@35226
  1309
(* type-safe interfaces for data dependent on executable code *)
haftmann@24219
  1310
haftmann@34160
  1311
functor Code_Data(Data: CODE_DATA_ARGS): CODE_DATA =
haftmann@24219
  1312
struct
haftmann@24219
  1313
haftmann@24219
  1314
type T = Data.T;
haftmann@24219
  1315
exception Data of T;
haftmann@24219
  1316
fun dest (Data x) = x
haftmann@24219
  1317
haftmann@34160
  1318
val kind = Code.declare_data (Data Data.empty);
haftmann@24219
  1319
haftmann@24219
  1320
val data_op = (kind, Data, dest);
haftmann@24219
  1321
haftmann@39641
  1322
fun change_yield (SOME thy) f = Code.change_yield_data data_op thy f
haftmann@39641
  1323
  | change_yield NONE f = f Data.empty
haftmann@39641
  1324
haftmann@39641
  1325
fun change some_thy f = snd (change_yield some_thy (pair () o f));
haftmann@24219
  1326
haftmann@24219
  1327
end;
haftmann@24219
  1328
haftmann@28143
  1329
structure Code : CODE = struct open Code; end;