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