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