src/Pure/Isar/code.ML
author wenzelm
Sun, 18 May 2008 15:04:37 +0200
changeset 26947 133905a0c493
parent 26928 ca87aff1ad2d
child 26970 bc28e7bcb765
permissions -rw-r--r--
moved global pretty/string_of functions from Sign to Syntax;
tuned message;
haftmann@24219
     1
(*  Title:      Pure/Isar/code.ML
haftmann@24219
     2
    ID:         $Id$
haftmann@24219
     3
    Author:     Florian Haftmann, TU Muenchen
haftmann@24219
     4
haftmann@24219
     5
Abstract executable content of theory.  Management of data dependent on
haftmann@25485
     6
executable content.  Cache assumes non-concurrent processing of a single theory.
haftmann@24219
     7
*)
haftmann@24219
     8
haftmann@24219
     9
signature CODE =
haftmann@24219
    10
sig
haftmann@24624
    11
  val add_func: thm -> theory -> theory
haftmann@24624
    12
  val add_liberal_func: thm -> theory -> theory
haftmann@24624
    13
  val add_default_func: thm -> theory -> theory
haftmann@24624
    14
  val add_default_func_attr: Attrib.src
haftmann@24219
    15
  val del_func: thm -> theory -> theory
haftmann@26021
    16
  val del_funcs: string -> theory -> theory
haftmann@24423
    17
  val add_funcl: string * thm list Susp.T -> theory -> theory
haftmann@24219
    18
  val add_inline: thm -> theory -> theory
haftmann@24219
    19
  val del_inline: thm -> theory -> theory
haftmann@24219
    20
  val add_inline_proc: string * (theory -> cterm list -> thm list) -> theory -> theory
haftmann@24219
    21
  val del_inline_proc: string -> theory -> theory
haftmann@24219
    22
  val add_preproc: string * (theory -> thm list -> thm list) -> theory -> theory
haftmann@24219
    23
  val del_preproc: string -> theory -> theory
haftmann@24219
    24
  val add_post: thm -> theory -> theory
haftmann@24219
    25
  val del_post: thm -> theory -> theory
haftmann@24423
    26
  val add_datatype: (string * typ) list -> theory -> theory
haftmann@24423
    27
  val add_datatype_cmd: string list -> theory -> theory
haftmann@25485
    28
  val type_interpretation:
haftmann@25485
    29
    (string * ((string * sort) list * (string * typ list) list)
haftmann@25485
    30
      -> theory -> theory) -> theory -> theory
haftmann@24844
    31
  val add_case: thm -> theory -> theory
haftmann@24844
    32
  val add_undefined: string -> theory -> theory
haftmann@24219
    33
haftmann@24219
    34
  val coregular_algebra: theory -> Sorts.algebra
haftmann@24219
    35
  val operational_algebra: theory -> (sort -> sort) * Sorts.algebra
haftmann@24423
    36
  val these_funcs: theory -> string -> thm list
haftmann@24219
    37
  val get_datatype: theory -> string -> ((string * sort) list * (string * typ list) list)
haftmann@24423
    38
  val get_datatype_of_constr: theory -> string -> string option
haftmann@24844
    39
  val get_case_data: theory -> string -> (int * string list) option
haftmann@24844
    40
  val is_undefined: theory -> string -> bool
haftmann@24423
    41
  val default_typ: theory -> string -> typ
haftmann@24219
    42
haftmann@24219
    43
  val preprocess_conv: cterm -> thm
haftmann@24837
    44
  val preprocess_term: theory -> term -> term
haftmann@24219
    45
  val postprocess_conv: cterm -> thm
haftmann@24837
    46
  val postprocess_term: theory -> term -> term
haftmann@24219
    47
haftmann@24219
    48
  val add_attribute: string * (Args.T list -> attribute * Args.T list) -> theory -> theory
haftmann@24219
    49
haftmann@24219
    50
  val print_codesetup: theory -> unit
haftmann@24219
    51
end;
haftmann@24219
    52
haftmann@24219
    53
signature CODE_DATA_ARGS =
haftmann@24219
    54
sig
haftmann@24219
    55
  type T
haftmann@24219
    56
  val empty: T
haftmann@24219
    57
  val merge: Pretty.pp -> T * T -> T
haftmann@24423
    58
  val purge: theory option -> string list option -> T -> T
haftmann@24219
    59
end;
haftmann@24219
    60
haftmann@24219
    61
signature CODE_DATA =
haftmann@24219
    62
sig
haftmann@24219
    63
  type T
haftmann@24219
    64
  val get: theory -> T
haftmann@24219
    65
  val change: theory -> (T -> T) -> T
haftmann@24219
    66
  val change_yield: theory -> (T -> 'a * T) -> 'a * T
haftmann@24219
    67
end;
haftmann@24219
    68
haftmann@24219
    69
signature PRIVATE_CODE =
haftmann@24219
    70
sig
haftmann@24219
    71
  include CODE
haftmann@24219
    72
  val declare_data: Object.T -> (Pretty.pp -> Object.T * Object.T -> Object.T)
haftmann@24423
    73
    -> (theory option -> string list option -> Object.T -> Object.T) -> serial
haftmann@24219
    74
  val get_data: serial * ('a -> Object.T) * (Object.T -> 'a)
haftmann@24219
    75
    -> theory -> 'a
haftmann@24219
    76
  val change_data: serial * ('a -> Object.T) * (Object.T -> 'a)
haftmann@24219
    77
    -> theory -> ('a -> 'a) -> 'a
haftmann@24219
    78
  val change_yield_data: serial * ('a -> Object.T) * (Object.T -> 'a)
haftmann@24219
    79
    -> theory -> ('a -> 'b * 'a) -> 'b * 'a
haftmann@24219
    80
end;
haftmann@24219
    81
haftmann@24219
    82
structure Code : PRIVATE_CODE =
haftmann@24219
    83
struct
haftmann@24219
    84
haftmann@25312
    85
(** code attributes **)
haftmann@24219
    86
haftmann@25312
    87
structure CodeAttr = TheoryDataFun (
haftmann@25312
    88
  type T = (string * (Args.T list -> attribute * Args.T list)) list;
haftmann@25312
    89
  val empty = [];
haftmann@25312
    90
  val copy = I;
haftmann@25312
    91
  val extend = I;
haftmann@25312
    92
  fun merge _ = AList.merge (op =) (K true);
haftmann@25312
    93
);
haftmann@25312
    94
haftmann@25312
    95
fun add_attribute (attr as (name, _)) =
haftmann@25312
    96
  let
haftmann@25312
    97
    fun add_parser ("", parser) attrs = attrs @ [("", parser)]
haftmann@25312
    98
      | add_parser (name, parser) attrs = (name, Args.$$$ name |-- parser) :: attrs;
haftmann@25312
    99
    fun error "" = error ("Code attribute already declared")
haftmann@25312
   100
      | error name = error ("Code attribute " ^ name ^ " already declared")
haftmann@25312
   101
  in CodeAttr.map (fn attrs => if AList.defined (op =) attrs name
haftmann@25312
   102
    then error name else add_parser attr attrs)
haftmann@25312
   103
  end;
haftmann@25312
   104
haftmann@25312
   105
val _ =
haftmann@25312
   106
  let
haftmann@25312
   107
    val code_attr = Attrib.syntax (Scan.peek (fn context =>
haftmann@25312
   108
      List.foldr op || Scan.fail (map snd (CodeAttr.get (Context.theory_of context)))));
haftmann@25312
   109
  in
wenzelm@26463
   110
    Context.>> (Context.map_theory
wenzelm@26463
   111
      (Attrib.add_attributes
wenzelm@26463
   112
        [("code", code_attr, "declare theorems for code generation")]))
haftmann@25312
   113
  end;
haftmann@25312
   114
haftmann@25312
   115
haftmann@25312
   116
(** certificate theorems **)
haftmann@24219
   117
haftmann@24219
   118
fun string_of_lthms r = case Susp.peek r
wenzelm@26928
   119
 of SOME thms => (map Display.string_of_thm o rev) thms
haftmann@24219
   120
  | NONE => ["[...]"];
haftmann@24219
   121
haftmann@24219
   122
fun pretty_lthms ctxt r = case Susp.peek r
haftmann@24219
   123
 of SOME thms => map (ProofContext.pretty_thm ctxt) thms
haftmann@24219
   124
  | NONE => [Pretty.str "[...]"];
haftmann@24219
   125
haftmann@24219
   126
fun certificate thy f r =
haftmann@24219
   127
  case Susp.peek r
haftmann@24219
   128
   of SOME thms => (Susp.value o f thy) thms
haftmann@24844
   129
    | NONE => let
haftmann@24844
   130
        val thy_ref = Theory.check_thy thy;
haftmann@24844
   131
      in Susp.delay (fn () => (f (Theory.deref thy_ref) o Susp.force) r) end;
haftmann@24219
   132
haftmann@24219
   133
haftmann@25312
   134
(** logical and syntactical specification of executable code **)
haftmann@24219
   135
haftmann@24219
   136
(* pairs of (selected, deleted) defining equations *)
haftmann@24219
   137
haftmann@24219
   138
type sdthms = thm list Susp.T * thm list;
haftmann@24219
   139
haftmann@24219
   140
fun add_drop_redundant thm (sels, dels) =
haftmann@24219
   141
  let
haftmann@24219
   142
    val thy = Thm.theory_of_thm thm;
haftmann@24219
   143
    val args_of = snd o strip_comb o fst o Logic.dest_equals o Thm.plain_prop_of;
haftmann@24219
   144
    val args = args_of thm;
haftmann@24219
   145
    fun matches [] _ = true
haftmann@24219
   146
      | matches (Var _ :: xs) [] = matches xs []
haftmann@24219
   147
      | matches (_ :: _) [] = false
haftmann@24219
   148
      | matches (x :: xs) (y :: ys) = Pattern.matches thy (x, y) andalso matches xs ys;
haftmann@24219
   149
    fun drop thm' = not (matches args (args_of thm'))
wenzelm@26947
   150
      orelse (warning ("Code generator: dropping redundant defining equation\n" ^ Display.string_of_thm thm'); false);
haftmann@24219
   151
    val (keeps, drops) = List.partition drop sels;
haftmann@24219
   152
  in (thm :: keeps, dels |> remove Thm.eq_thm_prop thm |> fold (insert Thm.eq_thm_prop) drops) end;
haftmann@24219
   153
haftmann@24219
   154
fun add_thm thm (sels, dels) =
haftmann@24219
   155
  apfst Susp.value (add_drop_redundant thm (Susp.force sels, dels));
haftmann@24219
   156
haftmann@24219
   157
fun add_lthms lthms (sels, []) =
haftmann@24219
   158
      (Susp.delay (fn () => fold add_drop_redundant
haftmann@24219
   159
        (Susp.force lthms) (Susp.force sels, []) |> fst), [])
haftmann@24219
   160
        (*FIXME*)
haftmann@24219
   161
  | add_lthms lthms (sels, dels) =
haftmann@24219
   162
      fold add_thm (Susp.force lthms) (sels, dels);
haftmann@24219
   163
haftmann@24219
   164
fun del_thm thm (sels, dels) =
haftmann@24219
   165
  (Susp.value (remove Thm.eq_thm_prop thm (Susp.force sels)), thm :: dels);
haftmann@24219
   166
haftmann@26021
   167
fun del_thms (sels, dels) =
haftmann@26021
   168
  let
haftmann@26021
   169
    val all_sels = Susp.force sels;
haftmann@26021
   170
  in (Susp.value [], rev all_sels @ dels) end;
haftmann@26021
   171
haftmann@24219
   172
fun pretty_sdthms ctxt (sels, _) = pretty_lthms ctxt sels;
haftmann@24219
   173
haftmann@25312
   174
haftmann@25312
   175
(* fundamental melting operations *)
haftmann@25312
   176
haftmann@25312
   177
fun melt _ ([], []) = (false, [])
haftmann@25312
   178
  | melt _ ([], ys) = (true, ys)
haftmann@25312
   179
  | melt eq (xs, ys) = fold_rev
haftmann@25312
   180
      (fn y => fn (t, xs) => (t orelse not (member eq xs y), insert eq y xs)) ys (false, xs);
haftmann@25312
   181
haftmann@25312
   182
fun melt_alist eq_key eq (xys as (xs, ys)) =
haftmann@25312
   183
  if eq_list (eq_pair eq_key eq) (xs, ys)
haftmann@25312
   184
  then (false, xs)
haftmann@25312
   185
  else (true, AList.merge eq_key eq xys);
haftmann@25312
   186
haftmann@25312
   187
val melt_thms = melt Thm.eq_thm_prop;
haftmann@25312
   188
haftmann@25312
   189
fun melt_lthms (r1, r2) =
haftmann@25312
   190
  if Susp.same (r1, r2)
haftmann@25312
   191
    then (false, r1)
haftmann@25312
   192
  else case Susp.peek r1
haftmann@25312
   193
   of SOME [] => (true, r2)
haftmann@25312
   194
    | _ => case Susp.peek r2
haftmann@25312
   195
       of SOME [] => (true, r1)
haftmann@25312
   196
        | _ => (apsnd (Susp.delay o K)) (melt_thms (Susp.force r1, Susp.force r2));
haftmann@25312
   197
haftmann@25312
   198
fun melt_sdthms ((sels1, dels1), (sels2, dels2)) =
haftmann@24219
   199
  let
haftmann@25312
   200
    val (dels_t, dels) = melt_thms (dels1, dels2);
haftmann@24219
   201
  in if dels_t
haftmann@24219
   202
    then let
haftmann@25312
   203
      val (_, sels) = melt_thms
haftmann@24219
   204
        (subtract Thm.eq_thm_prop dels2 (Susp.force sels1), Susp.force sels2);
haftmann@25312
   205
      val (_, dels) = melt_thms
haftmann@24219
   206
        (subtract Thm.eq_thm_prop (Susp.force sels2) dels1, dels2);
haftmann@24219
   207
    in (true, ((Susp.delay o K) sels, dels)) end
haftmann@24219
   208
    else let
haftmann@25312
   209
      val (sels_t, sels) = melt_lthms (sels1, sels2);
haftmann@24219
   210
    in (sels_t, (sels, dels)) end
haftmann@24219
   211
  end;
haftmann@24219
   212
haftmann@24219
   213
haftmann@25312
   214
(* specification data *)
haftmann@24219
   215
haftmann@25312
   216
fun melt_funcs tabs =
haftmann@24219
   217
  let
haftmann@25312
   218
    val tab' = Symtab.join (fn _ => fn ((_, a), (_, b)) => melt_sdthms (a, b)) tabs;
haftmann@25312
   219
    val touched = Symtab.fold (fn (c, (true, _)) => insert (op =) c | _ => I) tab' [];
haftmann@25312
   220
  in (touched, tab') end;
haftmann@24219
   221
haftmann@24219
   222
val eq_string = op = : string * string -> bool;
haftmann@24219
   223
fun eq_dtyp ((vs1, cs1), (vs2, cs2)) = 
haftmann@24219
   224
  gen_eq_set (eq_pair eq_string (gen_eq_set eq_string)) (vs1, vs2)
haftmann@24423
   225
    andalso gen_eq_set (eq_fst eq_string) (cs1, cs2);
haftmann@25312
   226
fun melt_dtyps (tabs as (tab1, tab2)) =
haftmann@24219
   227
  let
haftmann@24219
   228
    val tycos1 = Symtab.keys tab1;
haftmann@24219
   229
    val tycos2 = Symtab.keys tab2;
haftmann@24219
   230
    val tycos' = filter (member eq_string tycos2) tycos1;
haftmann@25312
   231
    val touched = not (gen_eq_set (op =) (tycos1, tycos2)
haftmann@25312
   232
      andalso gen_eq_set (eq_pair (op =) eq_dtyp)
haftmann@24219
   233
      (AList.make (the o Symtab.lookup tab1) tycos',
haftmann@24219
   234
       AList.make (the o Symtab.lookup tab2) tycos'));
haftmann@24219
   235
    fun join _ (cos as (_, cos2)) = if eq_dtyp cos
haftmann@24219
   236
      then raise Symtab.SAME else cos2;
haftmann@25312
   237
  in (touched, Symtab.join join tabs) end;
haftmann@24219
   238
haftmann@25312
   239
fun melt_cases ((cases1, undefs1), (cases2, undefs2)) =
haftmann@24844
   240
  let
haftmann@24844
   241
    val touched1 = subtract (op =) (Symtab.keys cases1) (Symtab.keys cases2)
haftmann@24844
   242
      @ subtract (op =) (Symtab.keys cases2) (Symtab.keys cases1);
haftmann@24844
   243
    val touched2 = subtract (op =) (Symtab.keys undefs1) (Symtab.keys undefs2)
haftmann@24844
   244
      @ subtract (op =) (Symtab.keys undefs2) (Symtab.keys undefs1);
haftmann@24844
   245
    val touched = fold (insert (op =)) touched1 touched2;
haftmann@24844
   246
  in
haftmann@24844
   247
    (touched, (Symtab.merge (K true) (cases1, cases2),
haftmann@24844
   248
      Symtab.merge (K true) (undefs1, undefs2)))
haftmann@24844
   249
  end;
haftmann@24844
   250
haftmann@24219
   251
datatype spec = Spec of {
haftmann@25312
   252
  funcs: (bool * sdthms) Symtab.table,
haftmann@24844
   253
  dtyps: ((string * sort) list * (string * typ list) list) Symtab.table,
haftmann@24844
   254
  cases: (int * string list) Symtab.table * unit Symtab.table
haftmann@24219
   255
};
haftmann@24219
   256
haftmann@24844
   257
fun mk_spec (funcs, (dtyps, cases)) =
haftmann@24844
   258
  Spec { funcs = funcs, dtyps = dtyps, cases = cases };
haftmann@24844
   259
fun map_spec f (Spec { funcs = funcs, dtyps = dtyps, cases = cases }) =
haftmann@24844
   260
  mk_spec (f (funcs, (dtyps, cases)));
haftmann@25312
   261
fun melt_spec (Spec { funcs = funcs1, dtyps = dtyps1, cases = cases1 },
haftmann@24844
   262
  Spec { funcs = funcs2, dtyps = dtyps2, cases = cases2 }) =
haftmann@24219
   263
  let
haftmann@25312
   264
    val (touched_funcs, funcs) = melt_funcs (funcs1, funcs2);
haftmann@25312
   265
    val (touched_dtyps, dtyps) = melt_dtyps (dtyps1, dtyps2);
haftmann@25312
   266
    val (touched_cases, cases) = melt_cases (cases1, cases2);
haftmann@25312
   267
    val touched = if touched_dtyps then NONE else
haftmann@25312
   268
      SOME (fold (insert (op =)) touched_cases touched_funcs);
haftmann@24844
   269
  in (touched, mk_spec (funcs, (dtyps, cases))) end;
haftmann@24219
   270
haftmann@25312
   271
haftmann@25312
   272
(* pre- and postprocessor *)
haftmann@25312
   273
haftmann@25312
   274
datatype thmproc = Thmproc of {
haftmann@25312
   275
  inlines: thm list,
haftmann@25312
   276
  inline_procs: (string * (serial * (theory -> cterm list -> thm list))) list,
haftmann@25312
   277
  preprocs: (string * (serial * (theory -> thm list -> thm list))) list,
haftmann@25312
   278
  posts: thm list
haftmann@25312
   279
};
haftmann@25312
   280
haftmann@25312
   281
fun mk_thmproc (((inlines, inline_procs), preprocs), posts) =
haftmann@25312
   282
  Thmproc { inlines = inlines, inline_procs = inline_procs, preprocs = preprocs,
haftmann@25312
   283
    posts = posts };
haftmann@25312
   284
fun map_thmproc f (Thmproc { inlines, inline_procs, preprocs, posts }) =
haftmann@25312
   285
  mk_thmproc (f (((inlines, inline_procs), preprocs), posts));
haftmann@25312
   286
fun melt_thmproc (Thmproc { inlines = inlines1, inline_procs = inline_procs1,
haftmann@25312
   287
    preprocs = preprocs1, posts = posts1 },
haftmann@25312
   288
  Thmproc { inlines = inlines2, inline_procs = inline_procs2,
haftmann@25312
   289
      preprocs = preprocs2, posts= posts2 }) =
haftmann@25312
   290
    let
haftmann@25312
   291
      val (touched1, inlines) = melt_thms (inlines1, inlines2);
haftmann@25312
   292
      val (touched2, inline_procs) = melt_alist (op =) (eq_fst (op =)) (inline_procs1, inline_procs2);
haftmann@25312
   293
      val (touched3, preprocs) = melt_alist (op =) (eq_fst (op =)) (preprocs1, preprocs2);
haftmann@25312
   294
      val (_, posts) = melt_thms (posts1, posts2);
haftmann@25312
   295
    in (touched1 orelse touched2 orelse touched3,
haftmann@25312
   296
      mk_thmproc (((inlines, inline_procs), preprocs), posts)) end;
haftmann@25312
   297
haftmann@24219
   298
datatype exec = Exec of {
haftmann@24219
   299
  thmproc: thmproc,
haftmann@24219
   300
  spec: spec
haftmann@24219
   301
};
haftmann@24219
   302
haftmann@24219
   303
fun mk_exec (thmproc, spec) =
haftmann@24219
   304
  Exec { thmproc = thmproc, spec = spec };
haftmann@24219
   305
fun map_exec f (Exec { thmproc = thmproc, spec = spec }) =
haftmann@24219
   306
  mk_exec (f (thmproc, spec));
haftmann@25312
   307
fun melt_exec (Exec { thmproc = thmproc1, spec = spec1 },
haftmann@24219
   308
  Exec { thmproc = thmproc2, spec = spec2 }) =
haftmann@24219
   309
  let
haftmann@25312
   310
    val (touched', thmproc) = melt_thmproc (thmproc1, thmproc2);
haftmann@25312
   311
    val (touched_cs, spec) = melt_spec (spec1, spec2);
haftmann@24219
   312
    val touched = if touched' then NONE else touched_cs;
haftmann@24219
   313
  in (touched, mk_exec (thmproc, spec)) end;
haftmann@24219
   314
val empty_exec = mk_exec (mk_thmproc ((([], []), []), []),
haftmann@24844
   315
  mk_spec (Symtab.empty, (Symtab.empty, (Symtab.empty, Symtab.empty))));
haftmann@24219
   316
haftmann@25312
   317
fun the_thmproc (Exec { thmproc = Thmproc x, ...}) = x;
haftmann@24219
   318
fun the_spec (Exec { spec = Spec x, ...}) = x;
haftmann@24219
   319
val the_funcs = #funcs o the_spec;
haftmann@24219
   320
val the_dtyps = #dtyps o the_spec;
haftmann@24844
   321
val the_cases = #cases o the_spec;
haftmann@24219
   322
val map_thmproc = map_exec o apfst o map_thmproc;
haftmann@24219
   323
val map_funcs = map_exec o apsnd o map_spec o apfst;
haftmann@24844
   324
val map_dtyps = map_exec o apsnd o map_spec o apsnd o apfst;
haftmann@24844
   325
val map_cases = map_exec o apsnd o map_spec o apsnd o apsnd;
haftmann@24219
   326
haftmann@24219
   327
haftmann@24219
   328
(* data slots dependent on executable content *)
haftmann@24219
   329
haftmann@24219
   330
(*private copy avoids potential conflict of table exceptions*)
haftmann@24219
   331
structure Datatab = TableFun(type key = int val ord = int_ord);
haftmann@24219
   332
haftmann@24219
   333
local
haftmann@24219
   334
haftmann@24219
   335
type kind = {
haftmann@24219
   336
  empty: Object.T,
haftmann@24219
   337
  merge: Pretty.pp -> Object.T * Object.T -> Object.T,
haftmann@24423
   338
  purge: theory option -> string list option -> Object.T -> Object.T
haftmann@24219
   339
};
haftmann@24219
   340
haftmann@24219
   341
val kinds = ref (Datatab.empty: kind Datatab.table);
haftmann@24219
   342
val kind_keys = ref ([]: serial list);
haftmann@24219
   343
haftmann@24219
   344
fun invoke f k = case Datatab.lookup (! kinds) k
haftmann@24219
   345
 of SOME kind => f kind
haftmann@24219
   346
  | NONE => sys_error "Invalid code data identifier";
haftmann@24219
   347
haftmann@24219
   348
in
haftmann@24219
   349
haftmann@24219
   350
fun declare_data empty merge purge =
haftmann@24219
   351
  let
haftmann@24219
   352
    val k = serial ();
haftmann@24219
   353
    val kind = {empty = empty, merge = merge, purge = purge};
haftmann@24219
   354
    val _ = change kinds (Datatab.update (k, kind));
haftmann@24219
   355
    val _ = change kind_keys (cons k);
haftmann@24219
   356
  in k end;
haftmann@24219
   357
haftmann@24219
   358
fun invoke_empty k = invoke (fn kind => #empty kind) k;
haftmann@24219
   359
haftmann@24219
   360
fun invoke_merge_all pp = Datatab.join
haftmann@24219
   361
  (invoke (fn kind => #merge kind pp));
haftmann@24219
   362
haftmann@24219
   363
fun invoke_purge_all thy_opt cs =
haftmann@24219
   364
  fold (fn k => Datatab.map_entry k
haftmann@24219
   365
    (invoke (fn kind => #purge kind thy_opt cs) k)) (! kind_keys);
haftmann@24219
   366
haftmann@24219
   367
end; (*local*)
haftmann@24219
   368
haftmann@24219
   369
haftmann@25312
   370
(** theory store **)
haftmann@24219
   371
haftmann@24219
   372
local
haftmann@24219
   373
haftmann@24219
   374
type data = Object.T Datatab.table;
haftmann@24219
   375
haftmann@24219
   376
structure CodeData = TheoryDataFun
haftmann@24219
   377
(
haftmann@24219
   378
  type T = exec * data ref;
haftmann@24219
   379
  val empty = (empty_exec, ref Datatab.empty : data ref);
haftmann@24219
   380
  fun copy (exec, data) = (exec, ref (! data));
haftmann@24219
   381
  val extend = copy;
haftmann@24219
   382
  fun merge pp ((exec1, data1), (exec2, data2)) =
haftmann@24219
   383
    let
haftmann@25312
   384
      val (touched, exec) = melt_exec (exec1, exec2);
haftmann@24219
   385
      val data1' = invoke_purge_all NONE touched (! data1);
haftmann@24219
   386
      val data2' = invoke_purge_all NONE touched (! data2);
haftmann@24219
   387
      val data = invoke_merge_all pp (data1', data2');
haftmann@24219
   388
    in (exec, ref data) end;
haftmann@24219
   389
);
haftmann@24219
   390
wenzelm@26463
   391
val _ = Context.>> (Context.map_theory CodeData.init);
haftmann@24219
   392
haftmann@24219
   393
fun thy_data f thy = f ((snd o CodeData.get) thy);
haftmann@24219
   394
haftmann@24219
   395
fun get_ensure_init kind data_ref =
haftmann@24219
   396
  case Datatab.lookup (! data_ref) kind
haftmann@24219
   397
   of SOME x => x
haftmann@24219
   398
    | NONE => let val y = invoke_empty kind
haftmann@24219
   399
        in (change data_ref (Datatab.update (kind, y)); y) end;
haftmann@24219
   400
haftmann@24219
   401
in
haftmann@24219
   402
haftmann@24219
   403
(* access to executable content *)
haftmann@24219
   404
haftmann@24844
   405
val the_exec = fst o CodeData.get;
haftmann@24219
   406
haftmann@24219
   407
fun map_exec_purge touched f thy =
haftmann@24219
   408
  CodeData.map (fn (exec, data) => 
haftmann@24219
   409
    (f exec, ref (invoke_purge_all (SOME thy) touched (! data)))) thy;
haftmann@24219
   410
haftmann@24219
   411
haftmann@24219
   412
(* access to data dependent on abstract executable content *)
haftmann@24219
   413
haftmann@24219
   414
fun get_data (kind, _, dest) = thy_data (get_ensure_init kind #> dest);
haftmann@24219
   415
haftmann@24219
   416
fun change_data (kind, mk, dest) =
haftmann@24219
   417
  let
haftmann@24219
   418
    fun chnge data_ref f =
haftmann@24219
   419
      let
haftmann@24219
   420
        val data = get_ensure_init kind data_ref;
haftmann@24219
   421
        val data' = f (dest data);
haftmann@24219
   422
      in (change data_ref (Datatab.update (kind, mk data')); data') end;
haftmann@24219
   423
  in thy_data chnge end;
haftmann@24219
   424
haftmann@24219
   425
fun change_yield_data (kind, mk, dest) =
haftmann@24219
   426
  let
haftmann@24219
   427
    fun chnge data_ref f =
haftmann@24219
   428
      let
haftmann@24219
   429
        val data = get_ensure_init kind data_ref;
haftmann@24219
   430
        val (x, data') = f (dest data);
haftmann@24219
   431
      in (x, (change data_ref (Datatab.update (kind, mk data')); data')) end;
haftmann@24219
   432
  in thy_data chnge end;
haftmann@24219
   433
haftmann@24219
   434
end; (*local*)
haftmann@24219
   435
haftmann@24219
   436
haftmann@24219
   437
(* print executable content *)
haftmann@24219
   438
haftmann@24219
   439
fun print_codesetup thy =
haftmann@24219
   440
  let
haftmann@24219
   441
    val ctxt = ProofContext.init thy;
haftmann@24844
   442
    val exec = the_exec thy;
haftmann@24219
   443
    fun pretty_func (s, lthms) =
haftmann@24219
   444
      (Pretty.block o Pretty.fbreaks) (
haftmann@24219
   445
        Pretty.str s :: pretty_sdthms ctxt lthms
haftmann@24219
   446
      );
haftmann@24219
   447
    fun pretty_dtyp (s, []) =
haftmann@24219
   448
          Pretty.str s
haftmann@24219
   449
      | pretty_dtyp (s, cos) =
haftmann@24219
   450
          (Pretty.block o Pretty.breaks) (
haftmann@24219
   451
            Pretty.str s
haftmann@24219
   452
            :: Pretty.str "="
haftmann@24219
   453
            :: separate (Pretty.str "|") (map (fn (c, []) => Pretty.str c
haftmann@24219
   454
                 | (c, tys) =>
haftmann@24219
   455
                     (Pretty.block o Pretty.breaks)
haftmann@24423
   456
                        (Pretty.str (CodeUnit.string_of_const thy c)
wenzelm@26947
   457
                          :: Pretty.str "of"
wenzelm@26947
   458
                          :: map (Pretty.quote o Syntax.pretty_typ_global thy) tys)) cos)
haftmann@24219
   459
          );
haftmann@24219
   460
    val inlines = (#inlines o the_thmproc) exec;
haftmann@25968
   461
    val posts = (#posts o the_thmproc) exec;
haftmann@24219
   462
    val inline_procs = (map fst o #inline_procs o the_thmproc) exec;
haftmann@24219
   463
    val preprocs = (map fst o #preprocs o the_thmproc) exec;
haftmann@24219
   464
    val funs = the_funcs exec
haftmann@24423
   465
      |> Symtab.dest
haftmann@25312
   466
      |> (map o apsnd) snd
haftmann@24219
   467
      |> (map o apfst) (CodeUnit.string_of_const thy)
haftmann@24219
   468
      |> sort (string_ord o pairself fst);
haftmann@24219
   469
    val dtyps = the_dtyps exec
haftmann@24219
   470
      |> Symtab.dest
wenzelm@26947
   471
      |> map (fn (dtco, (vs, cos)) =>
wenzelm@26947
   472
          (Syntax.string_of_typ_global thy (Type (dtco, map TFree vs)), cos))
haftmann@24219
   473
      |> sort (string_ord o pairself fst)
haftmann@24219
   474
  in
haftmann@24219
   475
    (Pretty.writeln o Pretty.chunks) [
haftmann@24219
   476
      Pretty.block (
haftmann@24219
   477
        Pretty.str "defining equations:"
haftmann@24219
   478
        :: Pretty.fbrk
haftmann@24219
   479
        :: (Pretty.fbreaks o map pretty_func) funs
haftmann@24219
   480
      ),
haftmann@24219
   481
      Pretty.block (
haftmann@24219
   482
        Pretty.str "inlining theorems:"
haftmann@24219
   483
        :: Pretty.fbrk
haftmann@24219
   484
        :: (Pretty.fbreaks o map (ProofContext.pretty_thm ctxt)) inlines
haftmann@24219
   485
      ),
haftmann@24219
   486
      Pretty.block (
haftmann@24219
   487
        Pretty.str "inlining procedures:"
haftmann@24219
   488
        :: Pretty.fbrk
haftmann@24219
   489
        :: (Pretty.fbreaks o map Pretty.str) inline_procs
haftmann@24219
   490
      ),
haftmann@24219
   491
      Pretty.block (
haftmann@24219
   492
        Pretty.str "preprocessors:"
haftmann@24219
   493
        :: Pretty.fbrk
haftmann@24219
   494
        :: (Pretty.fbreaks o map Pretty.str) preprocs
haftmann@24219
   495
      ),
haftmann@24219
   496
      Pretty.block (
haftmann@25968
   497
        Pretty.str "postprocessor theorems:"
haftmann@25968
   498
        :: Pretty.fbrk
haftmann@25968
   499
        :: (Pretty.fbreaks o map (ProofContext.pretty_thm ctxt)) posts
haftmann@25968
   500
      ),
haftmann@25968
   501
      Pretty.block (
haftmann@24219
   502
        Pretty.str "datatypes:"
haftmann@24219
   503
        :: Pretty.fbrk
haftmann@24219
   504
        :: (Pretty.fbreaks o map pretty_dtyp) dtyps
haftmann@24219
   505
      )
haftmann@24219
   506
    ]
haftmann@24219
   507
  end;
haftmann@24219
   508
haftmann@24219
   509
haftmann@24219
   510
haftmann@24219
   511
(** theorem transformation and certification **)
haftmann@24219
   512
haftmann@24219
   513
fun common_typ_funcs [] = []
haftmann@24219
   514
  | common_typ_funcs [thm] = [thm]
haftmann@24219
   515
  | common_typ_funcs (thms as thm :: _) =
haftmann@24219
   516
      let
haftmann@24219
   517
        val thy = Thm.theory_of_thm thm;
haftmann@24219
   518
        fun incr_thm thm max =
haftmann@24219
   519
          let
haftmann@24219
   520
            val thm' = incr_indexes max thm;
haftmann@24219
   521
            val max' = Thm.maxidx_of thm' + 1;
haftmann@24219
   522
          in (thm', max') end;
haftmann@24219
   523
        val (thms', maxidx) = fold_map incr_thm thms 0;
haftmann@24219
   524
        val ty1 :: tys = map (snd o CodeUnit.head_func) thms';
haftmann@24219
   525
        fun unify ty env = Sign.typ_unify thy (ty1, ty) env
haftmann@24219
   526
          handle Type.TUNIFY =>
haftmann@24219
   527
            error ("Type unificaton failed, while unifying defining equations\n"
haftmann@24219
   528
            ^ (cat_lines o map Display.string_of_thm) thms
haftmann@24219
   529
            ^ "\nwith types\n"
haftmann@24219
   530
            ^ (cat_lines o map (CodeUnit.string_of_typ thy)) (ty1 :: tys));
haftmann@24219
   531
        val (env, _) = fold unify tys (Vartab.empty, maxidx)
haftmann@24219
   532
        val instT = Vartab.fold (fn (x_i, (sort, ty)) =>
haftmann@24219
   533
          cons (Thm.ctyp_of thy (TVar (x_i, sort)), Thm.ctyp_of thy ty)) env [];
haftmann@24219
   534
      in map (Thm.instantiate (instT, [])) thms' end;
haftmann@24219
   535
haftmann@25597
   536
fun const_of_func thy = AxClass.unoverload_const thy o CodeUnit.head_func;
haftmann@24423
   537
haftmann@24219
   538
fun certify_const thy const thms =
haftmann@24219
   539
  let
haftmann@24423
   540
    fun cert thm = if const = const_of_func thy thm
haftmann@24219
   541
      then thm else error ("Wrong head of defining equation,\nexpected constant "
wenzelm@26928
   542
        ^ CodeUnit.string_of_const thy const ^ "\n" ^ Display.string_of_thm thm)
haftmann@24219
   543
  in map cert thms end;
haftmann@24219
   544
haftmann@24219
   545
haftmann@24219
   546
haftmann@24219
   547
(** operational sort algebra and class discipline **)
haftmann@24219
   548
haftmann@24219
   549
local
haftmann@24219
   550
haftmann@24219
   551
fun aggr_neutr f y [] = y
haftmann@24219
   552
  | aggr_neutr f y (x::xs) = aggr_neutr f (f y x) xs;
haftmann@24219
   553
haftmann@24219
   554
fun aggregate f [] = NONE
haftmann@24219
   555
  | aggregate f (x::xs) = SOME (aggr_neutr f x xs);
haftmann@24219
   556
haftmann@25462
   557
fun inter_sorts algebra =
haftmann@25462
   558
  aggregate (map2 (curry (Sorts.inter_sort algebra)));
haftmann@24219
   559
haftmann@24219
   560
fun specific_constraints thy (class, tyco) =
haftmann@24219
   561
  let
haftmann@24219
   562
    val vs = Name.invents Name.context "" (Sign.arity_number thy tyco);
wenzelm@24969
   563
    val classparams = (map fst o these o try (#params o AxClass.get_info thy)) class;
haftmann@24837
   564
    val funcs = classparams
haftmann@25597
   565
      |> map_filter (fn c => try (AxClass.param_of_inst thy) (c, tyco))
haftmann@24844
   566
      |> map (Symtab.lookup ((the_funcs o the_exec) thy))
haftmann@25312
   567
      |> (map o Option.map) (Susp.force o fst o snd)
haftmann@24219
   568
      |> maps these
haftmann@24423
   569
      |> map (Thm.transfer thy)
haftmann@24423
   570
    fun sorts_of [Type (_, tys)] = map (snd o dest_TVar) tys
haftmann@24423
   571
      | sorts_of tys = map (snd o dest_TVar) tys;
haftmann@24423
   572
    val sorts = map (sorts_of o Sign.const_typargs thy o CodeUnit.head_func) funcs;
haftmann@24219
   573
  in sorts end;
haftmann@24219
   574
haftmann@25462
   575
fun weakest_constraints thy algebra (class, tyco) =
haftmann@24219
   576
  let
haftmann@25462
   577
    val all_superclasses = Sorts.complete_sort algebra [class];
haftmann@25462
   578
  in case inter_sorts algebra (maps (fn class => specific_constraints thy (class, tyco)) all_superclasses)
haftmann@24219
   579
   of SOME sorts => sorts
haftmann@25462
   580
    | NONE => Sorts.mg_domain algebra tyco [class]
haftmann@24219
   581
  end;
haftmann@24219
   582
haftmann@25462
   583
fun strongest_constraints thy algebra (class, tyco) =
haftmann@24219
   584
  let
haftmann@24219
   585
    val all_subclasses = class :: Graph.all_preds ((#classes o Sorts.rep_algebra) algebra) [class];
haftmann@24219
   586
    val inst_subclasses = filter (can (Sorts.mg_domain algebra tyco) o single) all_subclasses;
haftmann@25462
   587
  in case inter_sorts algebra (maps (fn class => specific_constraints thy (class, tyco)) inst_subclasses)
haftmann@24219
   588
   of SOME sorts => sorts
haftmann@24219
   589
    | NONE => replicate
haftmann@25462
   590
        (Sign.arity_number thy tyco) (Sorts.minimize_sort algebra (Sorts.all_classes algebra))
haftmann@25462
   591
  end;
haftmann@25462
   592
haftmann@25462
   593
fun get_algebra thy (class, tyco) =
haftmann@25462
   594
  let
haftmann@25462
   595
    val base_algebra = Sign.classes_of thy;
haftmann@25462
   596
  in if can (Sorts.mg_domain base_algebra tyco) [class]
haftmann@25462
   597
    then base_algebra
haftmann@25462
   598
    else let
haftmann@25462
   599
      val superclasses = Sorts.super_classes base_algebra class;
haftmann@25462
   600
      val sorts = inter_sorts base_algebra
haftmann@25462
   601
          (map_filter (fn class => try (Sorts.mg_domain base_algebra tyco) [class]) superclasses)
haftmann@25462
   602
        |> the_default (replicate (Sign.arity_number thy tyco) [])
haftmann@25462
   603
    in
haftmann@25462
   604
      base_algebra
wenzelm@26947
   605
      |> Sorts.add_arities (Syntax.pp_global thy) (tyco, [(class, sorts)])
haftmann@25462
   606
    end
haftmann@24219
   607
  end;
haftmann@24219
   608
haftmann@24837
   609
fun gen_classparam_typ constr thy class (c, tyco) = 
haftmann@24219
   610
  let
haftmann@25462
   611
    val algebra = get_algebra thy (class, tyco);
wenzelm@24969
   612
    val cs = these (try (#params o AxClass.get_info thy) class);
haftmann@25462
   613
    val SOME ty = AList.lookup (op =) cs c;
wenzelm@24969
   614
    val sort_args = Name.names (Name.declare Name.aT Name.context) Name.aT
haftmann@25462
   615
      (constr thy algebra (class, tyco));
haftmann@24219
   616
    val ty_inst = Type (tyco, map TFree sort_args);
haftmann@24219
   617
  in Logic.varifyT (map_type_tfree (K ty_inst) ty) end;
haftmann@24219
   618
haftmann@24219
   619
fun retrieve_algebra thy operational =
wenzelm@26947
   620
  Sorts.subalgebra (Syntax.pp_global thy) operational
haftmann@25462
   621
    (weakest_constraints thy (Sign.classes_of thy))
haftmann@24219
   622
    (Sign.classes_of thy);
haftmann@24219
   623
haftmann@24219
   624
in
haftmann@24219
   625
haftmann@24219
   626
fun coregular_algebra thy = retrieve_algebra thy (K true) |> snd;
haftmann@24219
   627
fun operational_algebra thy =
haftmann@24219
   628
  let
haftmann@24219
   629
    fun add_iff_operational class =
wenzelm@24928
   630
      can (AxClass.get_info thy) class ? cons class;
haftmann@24219
   631
    val operational_classes = fold add_iff_operational (Sign.all_classes thy) []
haftmann@24219
   632
  in retrieve_algebra thy (member (op =) operational_classes) end;
haftmann@24219
   633
haftmann@24837
   634
val classparam_weakest_typ = gen_classparam_typ weakest_constraints;
haftmann@24837
   635
val classparam_strongest_typ = gen_classparam_typ strongest_constraints;
haftmann@24219
   636
haftmann@24219
   637
fun assert_func_typ thm =
haftmann@24219
   638
  let
haftmann@24219
   639
    val thy = Thm.theory_of_thm thm;
haftmann@24837
   640
    fun check_typ_classparam tyco (c, thm) =
haftmann@24219
   641
          let
haftmann@24423
   642
            val SOME class = AxClass.class_of_param thy c;
haftmann@24219
   643
            val (_, ty) = CodeUnit.head_func thm;
haftmann@24837
   644
            val ty_decl = classparam_weakest_typ thy class (c, tyco);
haftmann@24837
   645
            val ty_strongest = classparam_strongest_typ thy class (c, tyco);
haftmann@24219
   646
            fun constrain thm = 
haftmann@24219
   647
              let
haftmann@24219
   648
                val max = Thm.maxidx_of thm + 1;
haftmann@24219
   649
                val ty_decl' = Logic.incr_tvar max ty_decl;
haftmann@24219
   650
                val (_, ty') = CodeUnit.head_func thm;
haftmann@24219
   651
                val (env, _) = Sign.typ_unify thy (ty_decl', ty') (Vartab.empty, max);
haftmann@24219
   652
                val instT = Vartab.fold (fn (x_i, (sort, ty)) =>
haftmann@24219
   653
                  cons (Thm.ctyp_of thy (TVar (x_i, sort)), Thm.ctyp_of thy ty)) env [];
haftmann@24219
   654
              in Thm.instantiate (instT, []) thm end;
haftmann@24219
   655
          in if Sign.typ_instance thy (ty_strongest, ty)
haftmann@24219
   656
            then if Sign.typ_instance thy (ty, ty_decl)
haftmann@24219
   657
            then thm
haftmann@24219
   658
            else (warning ("Constraining type\n" ^ CodeUnit.string_of_typ thy ty
haftmann@24219
   659
              ^ "\nof defining equation\n"
wenzelm@26928
   660
              ^ Display.string_of_thm thm
haftmann@24219
   661
              ^ "\nto permitted most general type\n"
haftmann@24219
   662
              ^ CodeUnit.string_of_typ thy ty_decl);
haftmann@24219
   663
              constrain thm)
haftmann@24219
   664
            else CodeUnit.bad_thm ("Type\n" ^ CodeUnit.string_of_typ thy ty
haftmann@24219
   665
              ^ "\nof defining equation\n"
wenzelm@26928
   666
              ^ Display.string_of_thm thm
haftmann@24219
   667
              ^ "\nis incompatible with permitted least general type\n"
haftmann@24219
   668
              ^ CodeUnit.string_of_typ thy ty_strongest)
haftmann@24423
   669
          end;
haftmann@24423
   670
    fun check_typ_fun (c, thm) =
haftmann@24219
   671
      let
haftmann@24219
   672
        val (_, ty) = CodeUnit.head_func thm;
haftmann@24219
   673
        val ty_decl = Sign.the_const_type thy c;
haftmann@24219
   674
      in if Sign.typ_equiv thy (Type.strip_sorts ty_decl, Type.strip_sorts ty)
haftmann@24219
   675
        then thm
haftmann@24219
   676
        else CodeUnit.bad_thm ("Type\n" ^ CodeUnit.string_of_typ thy ty
haftmann@24219
   677
           ^ "\nof defining equation\n"
wenzelm@26928
   678
           ^ Display.string_of_thm thm
haftmann@24219
   679
           ^ "\nis incompatible with declared function type\n"
haftmann@24219
   680
           ^ CodeUnit.string_of_typ thy ty_decl)
haftmann@24219
   681
      end;
haftmann@24423
   682
    fun check_typ (c, thm) =
haftmann@25597
   683
      case AxClass.inst_of_param thy c
haftmann@24837
   684
       of SOME (c, tyco) => check_typ_classparam tyco (c, thm)
haftmann@24423
   685
        | NONE => check_typ_fun (c, thm);
haftmann@24423
   686
  in check_typ (const_of_func thy thm, thm) end;
haftmann@24219
   687
haftmann@24283
   688
val mk_func = CodeUnit.error_thm (assert_func_typ o CodeUnit.mk_func);
haftmann@24624
   689
val mk_liberal_func = CodeUnit.warning_thm (assert_func_typ o CodeUnit.mk_func);
haftmann@24624
   690
val mk_default_func = CodeUnit.try_thm (assert_func_typ o CodeUnit.mk_func);
haftmann@24219
   691
haftmann@24219
   692
end;
haftmann@24219
   693
haftmann@24219
   694
haftmann@24219
   695
haftmann@24219
   696
(** interfaces and attributes **)
haftmann@24219
   697
haftmann@24624
   698
fun delete_force msg key xs =
haftmann@24624
   699
  if AList.defined (op =) xs key then AList.delete (op =) key xs
haftmann@24624
   700
  else error ("No such " ^ msg ^ ": " ^ quote key);
haftmann@24624
   701
haftmann@24423
   702
fun get_datatype thy tyco =
haftmann@24844
   703
  case Symtab.lookup ((the_dtyps o the_exec) thy) tyco
haftmann@24423
   704
   of SOME spec => spec
haftmann@24423
   705
    | NONE => Sign.arity_number thy tyco
wenzelm@24848
   706
        |> Name.invents Name.context Name.aT
haftmann@24423
   707
        |> map (rpair [])
haftmann@24423
   708
        |> rpair [];
haftmann@24423
   709
haftmann@24423
   710
fun get_datatype_of_constr thy c =
haftmann@24423
   711
  case (snd o strip_type o Sign.the_const_type thy) c
haftmann@24423
   712
   of Type (tyco, _) => if member (op =)
haftmann@24844
   713
       ((the_default [] o Option.map (map fst o snd) o Symtab.lookup ((the_dtyps o the_exec) thy)) tyco) c
haftmann@24423
   714
       then SOME tyco else NONE
haftmann@24423
   715
    | _ => NONE;
haftmann@24423
   716
haftmann@24423
   717
fun get_constr_typ thy c =
haftmann@24423
   718
  case get_datatype_of_constr thy c
haftmann@24423
   719
   of SOME tyco => let
haftmann@24423
   720
          val (vs, cos) = get_datatype thy tyco;
haftmann@24423
   721
          val SOME tys = AList.lookup (op =) cos c;
haftmann@24423
   722
          val ty = tys ---> Type (tyco, map TFree vs);
haftmann@24423
   723
        in SOME (Logic.varifyT ty) end
haftmann@24423
   724
    | NONE => NONE;
haftmann@24423
   725
haftmann@24844
   726
val get_case_data = Symtab.lookup o fst o the_cases o the_exec;
haftmann@24844
   727
haftmann@24844
   728
val is_undefined = Symtab.defined o snd o the_cases o the_exec;
haftmann@24844
   729
haftmann@24624
   730
fun add_func thm thy =
haftmann@24624
   731
  let
haftmann@24624
   732
    val func = mk_func thm;
haftmann@24624
   733
    val c = const_of_func thy func;
haftmann@24624
   734
    val _ = if (is_some o AxClass.class_of_param thy) c
haftmann@24624
   735
      then error ("Rejected polymorphic equation for overloaded constant:\n"
wenzelm@26928
   736
        ^ Display.string_of_thm thm)
haftmann@24624
   737
      else ();
haftmann@24624
   738
    val _ = if (is_some o get_datatype_of_constr thy) c
haftmann@24624
   739
      then error ("Rejected equation for datatype constructor:\n"
wenzelm@26928
   740
        ^ Display.string_of_thm func)
haftmann@24624
   741
      else ();
haftmann@24624
   742
  in
haftmann@24624
   743
    (map_exec_purge (SOME [c]) o map_funcs) (Symtab.map_default
haftmann@25312
   744
      (c, (false, (Susp.value [], []))) (apsnd (add_thm func))) thy
haftmann@24624
   745
  end;
haftmann@24219
   746
haftmann@24624
   747
fun add_liberal_func thm thy =
haftmann@24624
   748
  case mk_liberal_func thm
haftmann@24624
   749
   of SOME func => let
haftmann@24624
   750
          val c = const_of_func thy func
haftmann@24624
   751
        in if (is_some o AxClass.class_of_param thy) c
haftmann@24624
   752
          orelse (is_some o get_datatype_of_constr thy) c
haftmann@24624
   753
          then thy
haftmann@24624
   754
          else map_exec_purge (SOME [c]) (map_funcs
haftmann@24624
   755
            (Symtab.map_default
haftmann@25312
   756
              (c, (false, (Susp.value [], []))) (apsnd (add_thm func)))) thy
haftmann@24624
   757
        end
haftmann@24624
   758
    | NONE => thy;
haftmann@24624
   759
haftmann@24624
   760
fun add_default_func thm thy =
haftmann@24624
   761
  case mk_default_func thm
haftmann@24624
   762
   of SOME func => let
haftmann@24624
   763
          val c = const_of_func thy func
haftmann@24624
   764
        in if (is_some o AxClass.class_of_param thy) c
haftmann@24624
   765
          orelse (is_some o get_datatype_of_constr thy) c
haftmann@24624
   766
          then thy
haftmann@24624
   767
          else map_exec_purge (SOME [c]) (map_funcs
haftmann@24624
   768
          (Symtab.map_default
haftmann@25312
   769
            (c, (false, (Susp.value [], []))) (apsnd (add_thm func)))) thy
haftmann@24624
   770
        end
haftmann@24624
   771
    | NONE => thy;
haftmann@24219
   772
haftmann@24219
   773
fun del_func thm thy =
haftmann@24659
   774
  case mk_liberal_func thm
haftmann@24659
   775
   of SOME func => let
haftmann@24659
   776
          val c = const_of_func thy func;
haftmann@24659
   777
        in map_exec_purge (SOME [c]) (map_funcs
haftmann@25312
   778
          (Symtab.map_entry c (apsnd (del_thm func)))) thy
haftmann@24659
   779
        end
haftmann@24659
   780
    | NONE => thy;
haftmann@24219
   781
haftmann@26021
   782
fun del_funcs const = map_exec_purge (SOME [const])
haftmann@26021
   783
  (map_funcs (Symtab.map_entry const (apsnd del_thms)));
haftmann@26021
   784
haftmann@24219
   785
fun add_funcl (const, lthms) thy =
haftmann@24219
   786
  let
haftmann@24219
   787
    val lthms' = certificate thy (fn thy => certify_const thy const) lthms;
haftmann@24219
   788
      (*FIXME must check compatibility with sort algebra;
haftmann@24219
   789
        alas, naive checking results in non-termination!*)
haftmann@24219
   790
  in
haftmann@25312
   791
    map_exec_purge (SOME [const])
haftmann@25312
   792
      (map_funcs (Symtab.map_default (const, (false, (Susp.value [], [])))
haftmann@25312
   793
      (apsnd (add_lthms lthms')))) thy
haftmann@24219
   794
  end;
haftmann@24219
   795
haftmann@24624
   796
val add_default_func_attr = Attrib.internal (fn _ => Thm.declaration_attribute
haftmann@24624
   797
  (fn thm => Context.mapping (add_default_func thm) I));
haftmann@24219
   798
haftmann@25485
   799
structure TypeInterpretation = InterpretationFun(type T = string * serial val eq = eq_snd (op =) : T * T -> bool);
haftmann@25462
   800
haftmann@24423
   801
fun add_datatype raw_cs thy =
haftmann@24219
   802
  let
haftmann@25597
   803
    val cs = map (fn c_ty as (_, ty) => (AxClass.unoverload_const thy c_ty, ty)) raw_cs;
haftmann@24423
   804
    val (tyco, vs_cos) = CodeUnit.constrset_of_consts thy cs;
haftmann@25462
   805
    val cs' = map fst (snd vs_cos);
haftmann@25462
   806
    val purge_cs = case Symtab.lookup ((the_dtyps o the_exec) thy) tyco
haftmann@25462
   807
     of SOME (vs, cos) => if null cos then NONE else SOME (cs' @ map fst cos)
haftmann@24423
   808
      | NONE => NONE;
haftmann@24219
   809
  in
haftmann@24219
   810
    thy
haftmann@25462
   811
    |> map_exec_purge purge_cs (map_dtyps (Symtab.update (tyco, vs_cos))
haftmann@24423
   812
        #> map_funcs (fold (Symtab.delete_safe o fst) cs))
haftmann@25485
   813
    |> TypeInterpretation.data (tyco, serial ())
haftmann@24219
   814
  end;
haftmann@24219
   815
haftmann@25485
   816
fun type_interpretation f =  TypeInterpretation.interpretation
haftmann@25485
   817
  (fn (tyco, _) => fn thy => f (tyco, get_datatype thy tyco) thy);
haftmann@25485
   818
haftmann@24423
   819
fun add_datatype_cmd raw_cs thy =
haftmann@24423
   820
  let
haftmann@24423
   821
    val cs = map (CodeUnit.read_bare_const thy) raw_cs;
haftmann@24423
   822
  in add_datatype cs thy end;
haftmann@24219
   823
haftmann@24844
   824
fun add_case thm thy =
haftmann@24844
   825
  let
haftmann@24844
   826
    val entry as (c, _) = CodeUnit.case_cert thm;
haftmann@24844
   827
  in
haftmann@24844
   828
    (map_exec_purge (SOME [c]) o map_cases o apfst) (Symtab.update entry) thy
haftmann@24844
   829
  end;
haftmann@24844
   830
haftmann@24844
   831
fun add_undefined c thy =
haftmann@24844
   832
  (map_exec_purge (SOME [c]) o map_cases o apsnd) (Symtab.update (c, ())) thy;
haftmann@24844
   833
haftmann@24219
   834
fun add_inline thm thy =
haftmann@24219
   835
  (map_exec_purge NONE o map_thmproc o apfst o apfst o apfst)
haftmann@24219
   836
    (insert Thm.eq_thm_prop (CodeUnit.error_thm CodeUnit.mk_rew thm)) thy;
haftmann@24219
   837
        (*fully applied in order to get right context for mk_rew!*)
haftmann@24219
   838
haftmann@24219
   839
fun del_inline thm thy =
haftmann@24219
   840
  (map_exec_purge NONE o map_thmproc o apfst o apfst o apfst)
haftmann@24219
   841
    (remove Thm.eq_thm_prop (CodeUnit.error_thm CodeUnit.mk_rew thm)) thy;
haftmann@24219
   842
        (*fully applied in order to get right context for mk_rew!*)
haftmann@24219
   843
haftmann@24219
   844
fun add_inline_proc (name, f) =
haftmann@24219
   845
  (map_exec_purge NONE o map_thmproc o apfst o apfst o apsnd)
haftmann@24219
   846
    (AList.update (op =) (name, (serial (), f)));
haftmann@24219
   847
haftmann@24219
   848
fun del_inline_proc name =
haftmann@24219
   849
  (map_exec_purge NONE o map_thmproc o apfst o apfst o apsnd)
haftmann@24219
   850
    (delete_force "inline procedure" name);
haftmann@24219
   851
haftmann@24219
   852
fun add_preproc (name, f) =
haftmann@24219
   853
  (map_exec_purge NONE o map_thmproc o apfst o apsnd)
haftmann@24219
   854
    (AList.update (op =) (name, (serial (), f)));
haftmann@24219
   855
haftmann@24219
   856
fun del_preproc name =
haftmann@24219
   857
  (map_exec_purge NONE o map_thmproc o apfst o apsnd)
haftmann@24219
   858
    (delete_force "preprocessor" name);
haftmann@24219
   859
haftmann@24219
   860
fun add_post thm thy =
haftmann@24219
   861
  (map_exec_purge NONE o map_thmproc o apsnd)
haftmann@24219
   862
    (insert Thm.eq_thm_prop (CodeUnit.error_thm CodeUnit.mk_rew thm)) thy;
haftmann@24219
   863
        (*fully applied in order to get right context for mk_rew!*)
haftmann@24219
   864
haftmann@24219
   865
fun del_post thm thy =
haftmann@24219
   866
  (map_exec_purge NONE o map_thmproc o apsnd)
haftmann@24219
   867
    (remove Thm.eq_thm_prop (CodeUnit.error_thm CodeUnit.mk_rew thm)) thy;
haftmann@24219
   868
        (*fully applied in order to get right context for mk_rew!*)
haftmann@24219
   869
wenzelm@26463
   870
val _ = Context.>> (Context.map_theory
haftmann@24219
   871
  (let
haftmann@24219
   872
    fun mk_attribute f = Thm.declaration_attribute (fn thm => Context.mapping (f thm) I);
haftmann@24219
   873
    fun add_simple_attribute (name, f) =
haftmann@24219
   874
      add_attribute (name, Scan.succeed (mk_attribute f));
haftmann@24219
   875
    fun add_del_attribute (name, (add, del)) =
haftmann@24219
   876
      add_attribute (name, Args.del |-- Scan.succeed (mk_attribute del)
haftmann@24219
   877
        || Scan.succeed (mk_attribute add))
haftmann@24219
   878
  in
haftmann@25462
   879
    TypeInterpretation.init
haftmann@25462
   880
    #> add_del_attribute ("func", (add_func, del_func))
haftmann@24219
   881
    #> add_del_attribute ("inline", (add_inline, del_inline))
haftmann@24219
   882
    #> add_del_attribute ("post", (add_post, del_post))
wenzelm@26463
   883
  end));
haftmann@24219
   884
haftmann@24219
   885
haftmann@24219
   886
(** post- and preprocessing **)
haftmann@24219
   887
haftmann@24219
   888
local
haftmann@24219
   889
haftmann@24219
   890
fun gen_apply_inline_proc prep post thy f x =
haftmann@24219
   891
  let
haftmann@24219
   892
    val cts = prep x;
haftmann@24219
   893
    val rews = map CodeUnit.assert_rew (f thy cts);
haftmann@24219
   894
  in post rews x end;
haftmann@24219
   895
haftmann@24219
   896
val apply_inline_proc = gen_apply_inline_proc (maps
haftmann@24219
   897
  ((fn [args, rhs] => rhs :: (snd o Drule.strip_comb) args) o snd o Drule.strip_comb o Thm.cprop_of))
haftmann@24219
   898
  (fn rews => map (CodeUnit.rewrite_func rews));
haftmann@24219
   899
val apply_inline_proc_cterm = gen_apply_inline_proc single
haftmann@24219
   900
  (MetaSimplifier.rewrite false);
haftmann@24219
   901
haftmann@24219
   902
fun apply_preproc thy f [] = []
haftmann@24219
   903
  | apply_preproc thy f (thms as (thm :: _)) =
haftmann@24219
   904
      let
haftmann@24423
   905
        val const = const_of_func thy thm;
haftmann@24219
   906
        val thms' = f thy thms;
haftmann@24219
   907
      in certify_const thy const thms' end;
haftmann@24219
   908
haftmann@24219
   909
fun rhs_conv conv thm =
haftmann@24219
   910
  let
haftmann@24219
   911
    val thm' = (conv o Thm.rhs_of) thm;
haftmann@24219
   912
  in Thm.transitive thm thm' end
haftmann@24219
   913
haftmann@24837
   914
fun term_of_conv thy f =
haftmann@24837
   915
  Thm.cterm_of thy
haftmann@24837
   916
  #> f
haftmann@24837
   917
  #> Thm.prop_of
haftmann@24837
   918
  #> Logic.dest_equals
haftmann@24837
   919
  #> snd;
haftmann@24837
   920
haftmann@24219
   921
in
haftmann@24219
   922
haftmann@24219
   923
fun preprocess thy thms =
haftmann@24219
   924
  thms
haftmann@24844
   925
  |> fold (fn (_, (_, f)) => apply_preproc thy f) ((#preprocs o the_thmproc o the_exec) thy)
haftmann@24844
   926
  |> map (CodeUnit.rewrite_func ((#inlines o the_thmproc o the_exec) thy))
haftmann@24844
   927
  |> fold (fn (_, (_, f)) => apply_inline_proc thy f) ((#inline_procs o the_thmproc o the_exec) thy)
haftmann@24219
   928
(*FIXME - must check: rewrite rule, defining equation, proper constant |> map (snd o check_func false thy) *)
haftmann@24423
   929
  |> common_typ_funcs
haftmann@25597
   930
  |> map (AxClass.unoverload thy);
haftmann@24219
   931
haftmann@24219
   932
fun preprocess_conv ct =
haftmann@24219
   933
  let
haftmann@24219
   934
    val thy = Thm.theory_of_cterm ct;
haftmann@24219
   935
  in
haftmann@24219
   936
    ct
haftmann@24844
   937
    |> MetaSimplifier.rewrite false ((#inlines o the_thmproc o the_exec) thy)
haftmann@24219
   938
    |> fold (fn (_, (_, f)) => rhs_conv (apply_inline_proc_cterm thy f))
haftmann@24844
   939
        ((#inline_procs o the_thmproc o the_exec) thy)
haftmann@25597
   940
    |> rhs_conv (AxClass.unoverload_conv thy)
haftmann@24219
   941
  end;
haftmann@24219
   942
haftmann@24837
   943
fun preprocess_term thy = term_of_conv thy preprocess_conv;
haftmann@24837
   944
haftmann@24219
   945
fun postprocess_conv ct =
haftmann@24219
   946
  let
haftmann@24219
   947
    val thy = Thm.theory_of_cterm ct;
haftmann@24219
   948
  in
haftmann@24219
   949
    ct
haftmann@25597
   950
    |> AxClass.overload_conv thy
haftmann@24844
   951
    |> rhs_conv (MetaSimplifier.rewrite false ((#posts o the_thmproc o the_exec) thy))
haftmann@24219
   952
  end;
haftmann@24219
   953
haftmann@24837
   954
fun postprocess_term thy = term_of_conv thy postprocess_conv;
haftmann@24837
   955
haftmann@24219
   956
end; (*local*)
haftmann@24219
   957
haftmann@25597
   958
fun default_typ_proto thy c = case AxClass.inst_of_param thy c
haftmann@24837
   959
 of SOME (c, tyco) => classparam_weakest_typ thy ((the o AxClass.class_of_param thy) c)
haftmann@24423
   960
      (c, tyco) |> SOME
haftmann@24423
   961
  | NONE => (case AxClass.class_of_param thy c
haftmann@24423
   962
     of SOME class => SOME (Term.map_type_tvar
wenzelm@24848
   963
          (K (TVar ((Name.aT, 0), [class]))) (Sign.the_const_type thy c))
haftmann@24423
   964
      | NONE => get_constr_typ thy c);
haftmann@24219
   965
haftmann@24219
   966
local
haftmann@24219
   967
haftmann@24219
   968
fun get_funcs thy const =
haftmann@24844
   969
  Symtab.lookup ((the_funcs o the_exec) thy) const
haftmann@25312
   970
  |> Option.map (Susp.force o fst o snd)
haftmann@24219
   971
  |> these
haftmann@24219
   972
  |> map (Thm.transfer thy);
haftmann@24219
   973
haftmann@24219
   974
in
haftmann@24219
   975
haftmann@24219
   976
fun these_funcs thy const =
haftmann@24219
   977
  let
haftmann@24219
   978
    fun drop_refl thy = filter_out (is_equal o Term.fast_term_ord o Logic.dest_equals
haftmann@24219
   979
      o ObjectLogic.drop_judgment thy o Thm.plain_prop_of);
haftmann@24219
   980
  in
haftmann@24219
   981
    get_funcs thy const
haftmann@24219
   982
    |> preprocess thy
haftmann@24219
   983
    |> drop_refl thy
haftmann@24219
   984
  end;
haftmann@24219
   985
haftmann@24423
   986
fun default_typ thy c = case default_typ_proto thy c
haftmann@24219
   987
 of SOME ty => ty
haftmann@24423
   988
  | NONE => (case get_funcs thy c
haftmann@25597
   989
     of thm :: _ => snd (CodeUnit.head_func (AxClass.unoverload thy thm))
haftmann@24219
   990
      | [] => Sign.the_const_type thy c);
haftmann@24219
   991
haftmann@24219
   992
end; (*local*)
haftmann@24219
   993
haftmann@24219
   994
end; (*struct*)
haftmann@24219
   995
haftmann@24219
   996
haftmann@24219
   997
(** type-safe interfaces for data depedent on executable content **)
haftmann@24219
   998
haftmann@24219
   999
functor CodeDataFun(Data: CODE_DATA_ARGS): CODE_DATA =
haftmann@24219
  1000
struct
haftmann@24219
  1001
haftmann@24219
  1002
type T = Data.T;
haftmann@24219
  1003
exception Data of T;
haftmann@24219
  1004
fun dest (Data x) = x
haftmann@24219
  1005
haftmann@24219
  1006
val kind = Code.declare_data (Data Data.empty)
haftmann@24219
  1007
  (fn pp => fn (Data x1, Data x2) => Data (Data.merge pp (x1, x2)))
haftmann@24219
  1008
  (fn thy_opt => fn cs => fn Data x => Data (Data.purge thy_opt cs x));
haftmann@24219
  1009
haftmann@24219
  1010
val data_op = (kind, Data, dest);
haftmann@24219
  1011
haftmann@24219
  1012
val get = Code.get_data data_op;
haftmann@24219
  1013
val change = Code.change_data data_op;
haftmann@24219
  1014
fun change_yield thy = Code.change_yield_data data_op thy;
haftmann@24219
  1015
haftmann@24219
  1016
end;
haftmann@24219
  1017
haftmann@24219
  1018
structure Code : CODE =
haftmann@24219
  1019
struct
haftmann@24219
  1020
haftmann@24219
  1021
open Code;
haftmann@24219
  1022
haftmann@24219
  1023
end;