src/HOL/Tools/datatype_codegen.ML
author haftmann
Thu, 10 May 2007 10:22:17 +0200
changeset 22921 475ff421a6a3
parent 22778 a5b87573f427
child 23513 2ebb50c0db4f
permissions -rw-r--r--
consts in consts_code Isar commands are now referred to by usual term syntax
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12446
86887b40aeb1 Tuned header.
berghofe
parents: 12445
diff changeset
     1
(*  Title:      HOL/datatype_codegen.ML
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
     2
    ID:         $Id$
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
     3
    Author:     Stefan Berghofer & Florian Haftmann, TU Muenchen
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
     4
20855
9f60d493c8fe clarified header comments
haftmann
parents: 20835
diff changeset
     5
Code generator for inductive datatypes.
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
     6
*)
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
     7
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
     8
signature DATATYPE_CODEGEN =
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
     9
sig
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
    10
  val get_eq: theory -> string -> thm list
20597
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20439
diff changeset
    11
  val get_eq_datatype: theory -> string -> thm list
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
    12
  val dest_case_expr: theory -> term
20177
0af885e3dabf hooks now take string list as arguments (mutual datatypes); some nice combinators in datatype_codegen
haftmann
parents: 20105
diff changeset
    13
    -> ((string * typ) list * ((term * typ) * (term * term) list)) option
19886
6bec6daac280 added hook for case const defs
haftmann
parents: 19818
diff changeset
    14
  val add_datatype_case_const: string -> theory -> theory
6bec6daac280 added hook for case const defs
haftmann
parents: 19818
diff changeset
    15
  val add_datatype_case_defs: string -> theory -> theory
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
    16
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
    17
  type hook = (string * (bool * ((string * sort) list * (string * typ list) list))) list
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
    18
    -> theory -> theory
20597
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20439
diff changeset
    19
  val codetype_hook: hook
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20439
diff changeset
    20
  val eq_hook: hook
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
    21
  val codetypes_dependency: theory -> (string * bool) list list
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
    22
  val add_codetypes_hook_bootstrap: hook -> theory -> theory
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
    23
  val the_codetypes_mut_specs: theory -> (string * bool) list
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
    24
    -> ((string * sort) list * (string * (bool * (string * typ list) list)) list)
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
    25
  val get_codetypes_arities: theory -> (string * bool) list -> sort
22331
7df6bc8cf0b0 unified arity parser/arguments;
wenzelm
parents: 22296
diff changeset
    26
    -> (string * (arity * term list)) list option
21924
fe474e69e603 simplified class_package
haftmann
parents: 21708
diff changeset
    27
  val prove_codetypes_arities: tactic -> (string * bool) list -> sort
22331
7df6bc8cf0b0 unified arity parser/arguments;
wenzelm
parents: 22296
diff changeset
    28
    -> (arity list -> (string * term list) list -> theory
22423
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
    29
      -> ((bstring * Attrib.src list) * term) list * theory)
22331
7df6bc8cf0b0 unified arity parser/arguments;
wenzelm
parents: 22296
diff changeset
    30
    -> (arity list -> (string * term list) list -> theory -> theory)
20835
haftmann
parents: 20681
diff changeset
    31
    -> theory -> theory
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
    32
18708
4b3dadb4fe33 setup: theory -> theory;
wenzelm
parents: 18702
diff changeset
    33
  val setup: theory -> theory
20835
haftmann
parents: 20681
diff changeset
    34
  val setup_hooks: theory -> theory
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    35
end;
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    36
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    37
structure DatatypeCodegen : DATATYPE_CODEGEN =
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    38
struct
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    39
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    40
open Codegen;
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    41
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    42
fun mk_tuple [p] = p
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    43
  | mk_tuple ps = Pretty.block (Pretty.str "(" ::
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
    44
      List.concat (separate [Pretty.str ",", Pretty.brk 1] (map single ps)) @
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    45
        [Pretty.str ")"]);
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    46
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    47
(**** datatype definition ****)
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    48
14104
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
    49
(* find shortest path to constructor with no recursive arguments *)
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
    50
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
    51
fun find_nonempty (descr: DatatypeAux.descr) is i =
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
    52
  let
17521
0f1c48de39f5 introduced AList module in favor of assoc etc.
haftmann
parents: 17412
diff changeset
    53
    val (_, _, constrs) = valOf (AList.lookup (op =) descr i);
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15397
diff changeset
    54
    fun arg_nonempty (_, DatatypeAux.DtRec i) = if i mem is then NONE
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
    55
          else Option.map (curry op + 1 o snd) (find_nonempty descr (i::is) i)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15397
diff changeset
    56
      | arg_nonempty _ = SOME 0;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
    57
    fun max xs = Library.foldl
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15397
diff changeset
    58
      (fn (NONE, _) => NONE
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15397
diff changeset
    59
        | (SOME i, SOME j) => SOME (Int.max (i, j))
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15397
diff changeset
    60
        | (_, NONE) => NONE) (SOME 0, xs);
14104
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
    61
    val xs = sort (int_ord o pairself snd)
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
    62
      (List.mapPartial (fn (s, dts) => Option.map (pair s)
14104
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
    63
        (max (map (arg_nonempty o DatatypeAux.strip_dtyp) dts))) constrs)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15397
diff changeset
    64
  in case xs of [] => NONE | x :: _ => SOME x end;
14104
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
    65
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
    66
fun add_dt_defs thy defs dep module gr (descr: DatatypeAux.descr) =
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    67
  let
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
    68
    val descr' = List.filter (can (map DatatypeAux.dest_DtTFree o #2 o snd)) descr;
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
    69
    val rtnames = map (#1 o snd) (List.filter (fn (_, (_, _, cs)) =>
14104
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
    70
      exists (exists DatatypeAux.is_rec_type o snd) cs) descr');
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    71
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
    72
    val (_, (tname, _, _)) :: _ = descr';
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
    73
    val node_id = tname ^ " (type)";
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
    74
    val module' = if_library (thyname_of_type tname thy) module;
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    75
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    76
    fun mk_dtdef gr prfx [] = (gr, [])
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    77
      | mk_dtdef gr prfx ((_, (tname, dts, cs))::xs) =
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    78
          let
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    79
            val tvs = map DatatypeAux.dest_DtTFree dts;
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    80
            val sorts = map (rpair []) tvs;
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    81
            val cs' = map (apsnd (map (DatatypeAux.typ_of_dtyp descr sorts))) cs;
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
    82
            val (gr', (_, type_id)) = mk_type_id module' tname gr;
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
    83
            val (gr'', ps) =
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
    84
              foldl_map (fn (gr, (cname, cargs)) =>
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
    85
                foldl_map (invoke_tycodegen thy defs node_id module' false)
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
    86
                  (gr, cargs) |>>>
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
    87
                mk_const_id module' cname) (gr', cs');
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
    88
            val (gr''', rest) = mk_dtdef gr'' "and " xs
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    89
          in
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
    90
            (gr''',
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    91
             Pretty.block (Pretty.str prfx ::
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    92
               (if null tvs then [] else
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    93
                  [mk_tuple (map Pretty.str tvs), Pretty.str " "]) @
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
    94
               [Pretty.str (type_id ^ " ="), Pretty.brk 1] @
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
    95
               List.concat (separate [Pretty.brk 1, Pretty.str "| "]
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
    96
                 (map (fn (ps', (_, cname)) => [Pretty.block
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
    97
                   (Pretty.str cname ::
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
    98
                    (if null ps' then [] else
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
    99
                     List.concat ([Pretty.str " of", Pretty.brk 1] ::
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   100
                       separate [Pretty.str " *", Pretty.brk 1]
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   101
                         (map single ps'))))]) ps))) :: rest)
13754
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   102
          end;
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   103
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   104
    fun mk_term_of_def gr prfx [] = []
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   105
      | mk_term_of_def gr prfx ((_, (tname, dts, cs)) :: xs) =
13754
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   106
          let
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   107
            val tvs = map DatatypeAux.dest_DtTFree dts;
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   108
            val sorts = map (rpair []) tvs;
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   109
            val cs' = map (apsnd (map (DatatypeAux.typ_of_dtyp descr sorts))) cs;
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   110
            val dts' = map (DatatypeAux.typ_of_dtyp descr sorts) dts;
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   111
            val T = Type (tname, dts');
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   112
            val rest = mk_term_of_def gr "and " xs;
13754
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   113
            val (_, eqs) = foldl_map (fn (prfx, (cname, Ts)) =>
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   114
              let val args = map (fn i =>
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   115
                Pretty.str ("x" ^ string_of_int i)) (1 upto length Ts)
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   116
              in ("  | ", Pretty.blk (4,
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   117
                [Pretty.str prfx, mk_term_of gr module' false T, Pretty.brk 1,
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   118
                 if null Ts then Pretty.str (snd (get_const_id cname gr))
16645
a152d6b21c31 Adapted to modular code generation.
berghofe
parents: 15574
diff changeset
   119
                 else parens (Pretty.block
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   120
                   [Pretty.str (snd (get_const_id cname gr)),
13754
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   121
                    Pretty.brk 1, mk_tuple args]),
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   122
                 Pretty.str " =", Pretty.brk 1] @
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   123
                 List.concat (separate [Pretty.str " $", Pretty.brk 1]
13754
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   124
                   ([Pretty.str ("Const (\"" ^ cname ^ "\","), Pretty.brk 1,
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   125
                     mk_type false (Ts ---> T), Pretty.str ")"] ::
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   126
                    map (fn (x, U) => [Pretty.block [mk_term_of gr module' false U,
13754
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   127
                      Pretty.brk 1, x]]) (args ~~ Ts)))))
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   128
              end) (prfx, cs')
14104
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   129
          in eqs @ rest end;
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   130
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   131
    fun mk_gen_of_def gr prfx [] = []
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   132
      | mk_gen_of_def gr prfx ((i, (tname, dts, cs)) :: xs) =
14104
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   133
          let
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   134
            val tvs = map DatatypeAux.dest_DtTFree dts;
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   135
            val sorts = map (rpair []) tvs;
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   136
            val (cs1, cs2) =
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   137
              List.partition (exists DatatypeAux.is_rec_type o snd) cs;
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15397
diff changeset
   138
            val SOME (cname, _) = find_nonempty descr [i] i;
14104
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   139
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   140
            fun mk_delay p = Pretty.block
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   141
              [Pretty.str "fn () =>", Pretty.brk 1, p];
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   142
15397
5260ac75e07c Fixed bug in mk_gen_of_def that could cause non-termination of the generator
berghofe
parents: 14981
diff changeset
   143
            fun mk_constr s b (cname, dts) =
14104
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   144
              let
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   145
                val gs = map (fn dt => mk_app false (mk_gen gr module' false rtnames s
15397
5260ac75e07c Fixed bug in mk_gen_of_def that could cause non-termination of the generator
berghofe
parents: 14981
diff changeset
   146
                    (DatatypeAux.typ_of_dtyp descr sorts dt))
5260ac75e07c Fixed bug in mk_gen_of_def that could cause non-termination of the generator
berghofe
parents: 14981
diff changeset
   147
                  [Pretty.str (if b andalso DatatypeAux.is_rec_type dt then "0"
5260ac75e07c Fixed bug in mk_gen_of_def that could cause non-termination of the generator
berghofe
parents: 14981
diff changeset
   148
                     else "j")]) dts;
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   149
                val (_, id) = get_const_id cname gr
14104
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   150
              in case gs of
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   151
                  _ :: _ :: _ => Pretty.block
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   152
                    [Pretty.str id, Pretty.brk 1, mk_tuple gs]
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   153
                | _ => mk_app false (Pretty.str id) (map parens gs)
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   154
              end;
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   155
15397
5260ac75e07c Fixed bug in mk_gen_of_def that could cause non-termination of the generator
berghofe
parents: 14981
diff changeset
   156
            fun mk_choice [c] = mk_constr "(i-1)" false c
14104
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   157
              | mk_choice cs = Pretty.block [Pretty.str "one_of",
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   158
                  Pretty.brk 1, Pretty.blk (1, Pretty.str "[" ::
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   159
                  List.concat (separate [Pretty.str ",", Pretty.fbrk]
15397
5260ac75e07c Fixed bug in mk_gen_of_def that could cause non-termination of the generator
berghofe
parents: 14981
diff changeset
   160
                    (map (single o mk_delay o mk_constr "(i-1)" false) cs)) @
14104
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   161
                  [Pretty.str "]"]), Pretty.brk 1, Pretty.str "()"];
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   162
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   163
            val gs = map (Pretty.str o suffix "G" o strip_tname) tvs;
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   164
            val gen_name = "gen_" ^ snd (get_type_id tname gr)
14104
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   165
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   166
          in
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   167
            Pretty.blk (4, separate (Pretty.brk 1) 
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   168
                (Pretty.str (prfx ^ gen_name ^
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   169
                   (if null cs1 then "" else "'")) :: gs @
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   170
                 (if null cs1 then [] else [Pretty.str "i"]) @
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   171
                 [Pretty.str "j"]) @
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   172
              [Pretty.str " =", Pretty.brk 1] @
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   173
              (if not (null cs1) andalso not (null cs2)
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   174
               then [Pretty.str "frequency", Pretty.brk 1,
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   175
                 Pretty.blk (1, [Pretty.str "[",
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   176
                   mk_tuple [Pretty.str "i", mk_delay (mk_choice cs1)],
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   177
                   Pretty.str ",", Pretty.fbrk,
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   178
                   mk_tuple [Pretty.str "1", mk_delay (mk_choice cs2)],
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   179
                   Pretty.str "]"]), Pretty.brk 1, Pretty.str "()"]
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   180
               else if null cs2 then
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   181
                 [Pretty.block [Pretty.str "(case", Pretty.brk 1,
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   182
                   Pretty.str "i", Pretty.brk 1, Pretty.str "of",
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   183
                   Pretty.brk 1, Pretty.str "0 =>", Pretty.brk 1,
17521
0f1c48de39f5 introduced AList module in favor of assoc etc.
haftmann
parents: 17412
diff changeset
   184
                   mk_constr "0" true (cname, valOf (AList.lookup (op =) cs cname)),
14104
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   185
                   Pretty.brk 1, Pretty.str "| _ =>", Pretty.brk 1,
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   186
                   mk_choice cs1, Pretty.str ")"]]
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   187
               else [mk_choice cs2])) ::
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   188
            (if null cs1 then []
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   189
             else [Pretty.blk (4, separate (Pretty.brk 1) 
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   190
                 (Pretty.str ("and " ^ gen_name) :: gs @ [Pretty.str "i"]) @
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   191
               [Pretty.str " =", Pretty.brk 1] @
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   192
               separate (Pretty.brk 1) (Pretty.str (gen_name ^ "'") :: gs @
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   193
                 [Pretty.str "i", Pretty.str "i"]))]) @
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   194
            mk_gen_of_def gr "and " xs
14104
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   195
          end
13754
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   196
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   197
  in
20681
0e4df994ad34 Fixed bug concerning the generation of identifiers for
berghofe
parents: 20608
diff changeset
   198
    ((add_edge_acyclic (node_id, dep) gr
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   199
        handle Graph.CYCLES _ => gr) handle Graph.UNDEF _ =>
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   200
         let
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   201
           val gr1 = add_edge (node_id, dep)
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   202
             (new_node (node_id, (NONE, "", "")) gr);
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   203
           val (gr2, dtdef) = mk_dtdef gr1 "datatype " descr';
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   204
         in
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   205
           map_node node_id (K (NONE, module',
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   206
             Pretty.string_of (Pretty.blk (0, separate Pretty.fbrk dtdef @
13754
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   207
               [Pretty.str ";"])) ^ "\n\n" ^
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   208
             (if "term_of" mem !mode then
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   209
                Pretty.string_of (Pretty.blk (0, separate Pretty.fbrk
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   210
                  (mk_term_of_def gr2 "fun " descr') @ [Pretty.str ";"])) ^ "\n\n"
14104
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   211
              else "") ^
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   212
             (if "test" mem !mode then
29f726e36e5c Added generator for test case generators.
berghofe
parents: 13754
diff changeset
   213
                Pretty.string_of (Pretty.blk (0, separate Pretty.fbrk
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   214
                  (mk_gen_of_def gr2 "fun " descr') @ [Pretty.str ";"])) ^ "\n\n"
13754
021cf00435a9 Code generator for datatypes now also generates suitable term_of functions (when
berghofe
parents: 12890
diff changeset
   215
              else ""))) gr2
20681
0e4df994ad34 Fixed bug concerning the generation of identifiers for
berghofe
parents: 20608
diff changeset
   216
         end,
0e4df994ad34 Fixed bug concerning the generation of identifiers for
berghofe
parents: 20608
diff changeset
   217
     module')
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   218
  end;
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   219
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   220
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   221
(**** case expressions ****)
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   222
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   223
fun pretty_case thy defs gr dep module brack constrs (c as Const (_, T)) ts =
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   224
  let val i = length constrs
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   225
  in if length ts <= i then
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   226
       invoke_codegen thy defs dep module brack (gr, eta_expand c ts (i+1))
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   227
    else
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   228
      let
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   229
        val ts1 = Library.take (i, ts);
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   230
        val t :: ts2 = Library.drop (i, ts);
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   231
        val names = foldr add_term_names
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   232
          (map (fst o fst o dest_Var) (foldr add_term_vars [] ts1)) ts1;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   233
        val (Ts, dT) = split_last (Library.take (i+1, fst (strip_type T)));
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   234
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   235
        fun pcase gr [] [] [] = ([], gr)
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   236
          | pcase gr ((cname, cargs)::cs) (t::ts) (U::Us) =
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   237
              let
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   238
                val j = length cargs;
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 19886
diff changeset
   239
                val xs = Name.variant_list names (replicate j "x");
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   240
                val Us' = Library.take (j, fst (strip_type U));
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   241
                val frees = map Free (xs ~~ Us');
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   242
                val (gr0, cp) = invoke_codegen thy defs dep module false
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   243
                  (gr, list_comb (Const (cname, Us' ---> dT), frees));
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   244
                val t' = Envir.beta_norm (list_comb (t, frees));
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   245
                val (gr1, p) = invoke_codegen thy defs dep module false (gr0, t');
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   246
                val (ps, gr2) = pcase gr1 cs ts Us;
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   247
              in
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   248
                ([Pretty.block [cp, Pretty.str " =>", Pretty.brk 1, p]] :: ps, gr2)
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   249
              end;
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   250
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   251
        val (ps1, gr1) = pcase gr constrs ts1 Ts;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   252
        val ps = List.concat (separate [Pretty.brk 1, Pretty.str "| "] ps1);
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   253
        val (gr2, p) = invoke_codegen thy defs dep module false (gr1, t);
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   254
        val (gr3, ps2) = foldl_map (invoke_codegen thy defs dep module true) (gr2, ts2)
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   255
      in (gr3, (if not (null ts2) andalso brack then parens else I)
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   256
        (Pretty.block (separate (Pretty.brk 1)
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   257
          (Pretty.block ([Pretty.str "(case ", p, Pretty.str " of",
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   258
             Pretty.brk 1] @ ps @ [Pretty.str ")"]) :: ps2))))
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   259
      end
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   260
  end;
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   261
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   262
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   263
(**** constructors ****)
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   264
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   265
fun pretty_constr thy defs gr dep module brack args (c as Const (s, T)) ts =
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   266
  let val i = length args
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   267
  in if i > 1 andalso length ts < i then
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   268
      invoke_codegen thy defs dep module brack (gr, eta_expand c ts i)
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   269
     else
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   270
       let
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   271
         val id = mk_qual_id module (get_const_id s gr);
16645
a152d6b21c31 Adapted to modular code generation.
berghofe
parents: 15574
diff changeset
   272
         val (gr', ps) = foldl_map
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   273
           (invoke_codegen thy defs dep module (i = 1)) (gr, ts);
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   274
       in (case args of
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   275
          _ :: _ :: _ => (gr', (if brack then parens else I)
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   276
            (Pretty.block [Pretty.str id, Pretty.brk 1, mk_tuple ps]))
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   277
        | _ => (gr', mk_app brack (Pretty.str id) ps))
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   278
       end
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   279
  end;
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   280
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   281
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   282
(**** code generators for terms and types ****)
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   283
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   284
fun datatype_codegen thy defs gr dep module brack t = (case strip_comb t of
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   285
   (c as Const (s, T), ts) =>
22778
a5b87573f427 Streamlined datatype_codegen function using new datatype_of_case
berghofe
parents: 22746
diff changeset
   286
     (case DatatypePackage.datatype_of_case thy s of
a5b87573f427 Streamlined datatype_codegen function using new datatype_of_case
berghofe
parents: 22746
diff changeset
   287
        SOME {index, descr, ...} =>
22921
475ff421a6a3 consts in consts_code Isar commands are now referred to by usual term syntax
haftmann
parents: 22778
diff changeset
   288
          if is_some (get_assoc_code thy (s, T)) then NONE else
22778
a5b87573f427 Streamlined datatype_codegen function using new datatype_of_case
berghofe
parents: 22746
diff changeset
   289
          SOME (pretty_case thy defs gr dep module brack
a5b87573f427 Streamlined datatype_codegen function using new datatype_of_case
berghofe
parents: 22746
diff changeset
   290
            (#3 (the (AList.lookup op = descr index))) c ts)
a5b87573f427 Streamlined datatype_codegen function using new datatype_of_case
berghofe
parents: 22746
diff changeset
   291
      | NONE => case (DatatypePackage.datatype_of_constr thy s, strip_type T) of
a5b87573f427 Streamlined datatype_codegen function using new datatype_of_case
berghofe
parents: 22746
diff changeset
   292
        (SOME {index, descr, ...}, (_, U as Type _)) =>
22921
475ff421a6a3 consts in consts_code Isar commands are now referred to by usual term syntax
haftmann
parents: 22778
diff changeset
   293
          if is_some (get_assoc_code thy (s, T)) then NONE else
22778
a5b87573f427 Streamlined datatype_codegen function using new datatype_of_case
berghofe
parents: 22746
diff changeset
   294
          let val SOME args = AList.lookup op =
a5b87573f427 Streamlined datatype_codegen function using new datatype_of_case
berghofe
parents: 22746
diff changeset
   295
            (#3 (the (AList.lookup op = descr index))) s
a5b87573f427 Streamlined datatype_codegen function using new datatype_of_case
berghofe
parents: 22746
diff changeset
   296
          in
a5b87573f427 Streamlined datatype_codegen function using new datatype_of_case
berghofe
parents: 22746
diff changeset
   297
            SOME (pretty_constr thy defs
a5b87573f427 Streamlined datatype_codegen function using new datatype_of_case
berghofe
parents: 22746
diff changeset
   298
              (fst (invoke_tycodegen thy defs dep module false (gr, U)))
a5b87573f427 Streamlined datatype_codegen function using new datatype_of_case
berghofe
parents: 22746
diff changeset
   299
              dep module brack args c ts)
a5b87573f427 Streamlined datatype_codegen function using new datatype_of_case
berghofe
parents: 22746
diff changeset
   300
          end
a5b87573f427 Streamlined datatype_codegen function using new datatype_of_case
berghofe
parents: 22746
diff changeset
   301
      | _ => NONE)
a5b87573f427 Streamlined datatype_codegen function using new datatype_of_case
berghofe
parents: 22746
diff changeset
   302
 | _ => NONE);
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   303
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   304
fun datatype_tycodegen thy defs gr dep module brack (Type (s, Ts)) =
22778
a5b87573f427 Streamlined datatype_codegen function using new datatype_of_case
berghofe
parents: 22746
diff changeset
   305
      (case DatatypePackage.get_datatype thy s of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15397
diff changeset
   306
         NONE => NONE
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15397
diff changeset
   307
       | SOME {descr, ...} =>
22921
475ff421a6a3 consts in consts_code Isar commands are now referred to by usual term syntax
haftmann
parents: 22778
diff changeset
   308
           if is_some (get_assoc_type thy s) then NONE else
16645
a152d6b21c31 Adapted to modular code generation.
berghofe
parents: 15574
diff changeset
   309
           let
a152d6b21c31 Adapted to modular code generation.
berghofe
parents: 15574
diff changeset
   310
             val (gr', ps) = foldl_map
17144
6642e0f96f44 Implemented incremental code generation.
berghofe
parents: 16645
diff changeset
   311
               (invoke_tycodegen thy defs dep module false) (gr, Ts);
20681
0e4df994ad34 Fixed bug concerning the generation of identifiers for
berghofe
parents: 20608
diff changeset
   312
             val (gr'', module') = add_dt_defs thy defs dep module gr' descr;
0e4df994ad34 Fixed bug concerning the generation of identifiers for
berghofe
parents: 20608
diff changeset
   313
             val (gr''', tyid) = mk_type_id module' s gr''
0e4df994ad34 Fixed bug concerning the generation of identifiers for
berghofe
parents: 20608
diff changeset
   314
           in SOME (gr''',
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   315
             Pretty.block ((if null Ts then [] else
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   316
               [mk_tuple ps, Pretty.str " "]) @
20681
0e4df994ad34 Fixed bug concerning the generation of identifiers for
berghofe
parents: 20608
diff changeset
   317
               [Pretty.str (mk_qual_id module tyid)]))
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   318
           end)
16645
a152d6b21c31 Adapted to modular code generation.
berghofe
parents: 15574
diff changeset
   319
  | datatype_tycodegen _ _ _ _ _ _ _ = NONE;
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   320
18247
b17724cae935 code generator: case expressions, improved name resolving
haftmann
parents: 18220
diff changeset
   321
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   322
(** datatypes for code 2nd generation **)
20177
0af885e3dabf hooks now take string list as arguments (mutual datatypes); some nice combinators in datatype_codegen
haftmann
parents: 20105
diff changeset
   323
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
   324
fun dtyp_of_case_const thy c =
22778
a5b87573f427 Streamlined datatype_codegen function using new datatype_of_case
berghofe
parents: 22746
diff changeset
   325
  Option.map (fn {descr, index, ...} => #1 (the (AList.lookup op = descr index)))
a5b87573f427 Streamlined datatype_codegen function using new datatype_of_case
berghofe
parents: 22746
diff changeset
   326
    (DatatypePackage.datatype_of_case thy c);
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
   327
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
   328
fun dest_case_app cs ts tys =
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
   329
  let
22052
792c18b8f214 improved case patterns
haftmann
parents: 22051
diff changeset
   330
    val names = (Name.make_context o map fst) (fold Term.add_tfrees ts []);
792c18b8f214 improved case patterns
haftmann
parents: 22051
diff changeset
   331
    val abs = Name.names names "a" (Library.drop (length ts, tys));
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
   332
    val (ts', t) = split_last (ts @ map Free abs);
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
   333
    val (tys', sty) = split_last tys;
22051
2b8909d9d66a added undefined in cases
haftmann
parents: 22047
diff changeset
   334
    fun dest_case ((c, tys_decl), ty) t =
2b8909d9d66a added undefined in cases
haftmann
parents: 22047
diff changeset
   335
      let
2b8909d9d66a added undefined in cases
haftmann
parents: 22047
diff changeset
   336
        val (vs, t') = Term.strip_abs_eta (length tys_decl) t;
2b8909d9d66a added undefined in cases
haftmann
parents: 22047
diff changeset
   337
        val c' = list_comb (Const (c, map snd vs ---> sty), map Free vs);
2b8909d9d66a added undefined in cases
haftmann
parents: 22047
diff changeset
   338
      in case t'
22480
b20bc8029edb switched exception from arbitrary to undefined
haftmann
parents: 22435
diff changeset
   339
       of Const ("HOL.undefined", _) => NONE
22051
2b8909d9d66a added undefined in cases
haftmann
parents: 22047
diff changeset
   340
        | _ => SOME (c', t')
2b8909d9d66a added undefined in cases
haftmann
parents: 22047
diff changeset
   341
      end;
22047
ff91fd74bb71 handling for "undefined" in case expressions
haftmann
parents: 21924
diff changeset
   342
  in (abs, ((t, sty), map2 dest_case (cs ~~ tys') ts' |> map_filter I)) end;
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
   343
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
   344
fun dest_case_expr thy t =
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
   345
  case strip_comb t
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
   346
   of (Const (c, ty), ts) =>
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
   347
        (case dtyp_of_case_const thy c
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
   348
         of SOME dtco =>
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
   349
              let val (vs, cs) = (the o DatatypePackage.get_datatype_spec thy) dtco;
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
   350
              in SOME (dest_case_app cs ts (Library.take (length cs + 1, (fst o strip_type) ty))) end
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
   351
          | _ => NONE)
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
   352
    | _ => NONE;
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
   353
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   354
fun mk_distinct cos =
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   355
  let
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   356
    fun sym_product [] = []
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   357
      | sym_product (x::xs) = map (pair x) xs @ sym_product xs;
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   358
    fun mk_co_args (co, tys) ctxt =
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   359
      let
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   360
        val names = Name.invents ctxt "a" (length tys);
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   361
        val ctxt' = fold Name.declare names ctxt;
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   362
        val vs = map2 (curry Free) names tys;
20835
haftmann
parents: 20681
diff changeset
   363
      in (vs, ctxt') end;
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   364
    fun mk_dist ((co1, tys1), (co2, tys2)) =
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   365
      let
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   366
        val ((xs1, xs2), _) = Name.context
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   367
          |> mk_co_args (co1, tys1)
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   368
          ||>> mk_co_args (co2, tys2);
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   369
        val prem = HOLogic.mk_eq
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   370
          (list_comb (co1, xs1), list_comb (co2, xs2));
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   371
        val t = HOLogic.mk_not prem;
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   372
      in HOLogic.mk_Trueprop t end;
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   373
  in map mk_dist (sym_product cos) end;
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   374
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   375
local
20835
haftmann
parents: 20681
diff changeset
   376
  val not_sym = thm "HOL.not_sym";
haftmann
parents: 20681
diff changeset
   377
  val not_false_true = iffD2 OF [nth (thms "HOL.simp_thms") 7, TrueI];
21546
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   378
  val refl = thm "refl";
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   379
  val eqTrueI = thm "eqTrueI";
21516
c2a116a2c4fd ProofContext.init;
wenzelm
parents: 21454
diff changeset
   380
in
c2a116a2c4fd ProofContext.init;
wenzelm
parents: 21454
diff changeset
   381
c2a116a2c4fd ProofContext.init;
wenzelm
parents: 21454
diff changeset
   382
fun get_eq_datatype thy dtco =
20835
haftmann
parents: 20681
diff changeset
   383
  let
haftmann
parents: 20681
diff changeset
   384
    val SOME (vs, cs) = DatatypePackage.get_datatype_spec thy dtco;
haftmann
parents: 20681
diff changeset
   385
    fun mk_triv_inject co =
haftmann
parents: 20681
diff changeset
   386
      let
haftmann
parents: 20681
diff changeset
   387
        val ct' = Thm.cterm_of thy
haftmann
parents: 20681
diff changeset
   388
          (Const (co, Type (dtco, map (fn (v, sort) => TVar ((v, 0), sort)) vs)))
haftmann
parents: 20681
diff changeset
   389
        val cty' = Thm.ctyp_of_term ct';
haftmann
parents: 20681
diff changeset
   390
        val SOME (ct, cty) = fold_aterms (fn Var (v, ty) =>
haftmann
parents: 20681
diff changeset
   391
          (K o SOME) (Thm.cterm_of thy (Var (v, Thm.typ_of cty')), Thm.ctyp_of thy ty) | _ => I)
21546
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   392
          (Thm.prop_of refl) NONE;
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   393
      in eqTrueI OF [Thm.instantiate ([(cty, cty')], [(ct, ct')]) refl] end;
20835
haftmann
parents: 20681
diff changeset
   394
    val inject1 = map_filter (fn (co, []) => SOME (mk_triv_inject co) | _ => NONE) cs
haftmann
parents: 20681
diff changeset
   395
    val inject2 = (#inject o DatatypePackage.the_datatype thy) dtco;
21516
c2a116a2c4fd ProofContext.init;
wenzelm
parents: 21454
diff changeset
   396
    val ctxt = ProofContext.init thy;
20835
haftmann
parents: 20681
diff changeset
   397
    val simpset = Simplifier.context ctxt
haftmann
parents: 20681
diff changeset
   398
      (MetaSimplifier.empty_ss addsimprocs [distinct_simproc]);
haftmann
parents: 20681
diff changeset
   399
    val cos = map (fn (co, tys) =>
haftmann
parents: 20681
diff changeset
   400
        (Const (co, tys ---> Type (dtco, map TFree vs)), tys)) cs;
haftmann
parents: 20681
diff changeset
   401
    val tac = ALLGOALS (simp_tac simpset)
haftmann
parents: 20681
diff changeset
   402
      THEN ALLGOALS (ProofContext.fact_tac [not_false_true, TrueI]);
haftmann
parents: 20681
diff changeset
   403
    val distinct =
haftmann
parents: 20681
diff changeset
   404
      mk_distinct cos
haftmann
parents: 20681
diff changeset
   405
      |> map (fn t => Goal.prove_global thy [] [] t (K tac))
haftmann
parents: 20681
diff changeset
   406
      |> (fn thms => thms @ map (fn thm => not_sym OF [thm]) thms)
haftmann
parents: 20681
diff changeset
   407
  in inject1 @ inject2 @ distinct end;
21516
c2a116a2c4fd ProofContext.init;
wenzelm
parents: 21454
diff changeset
   408
c2a116a2c4fd ProofContext.init;
wenzelm
parents: 21454
diff changeset
   409
end;
19346
c4c003abd830 cleanup in datatype package
haftmann
parents: 19008
diff changeset
   410
19599
a5c7eb37d14f added DatatypeHooks
haftmann
parents: 19458
diff changeset
   411
fun add_datatype_case_const dtco thy =
a5c7eb37d14f added DatatypeHooks
haftmann
parents: 19458
diff changeset
   412
  let
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20071
diff changeset
   413
    val {case_name, index, descr, ...} = DatatypePackage.the_datatype thy dtco;
19599
a5c7eb37d14f added DatatypeHooks
haftmann
parents: 19458
diff changeset
   414
  in
20439
1bf42b262a38 code refinements
haftmann
parents: 20435
diff changeset
   415
    CodegenPackage.add_appconst (case_name, CodegenPackage.appgen_case dest_case_expr) thy
19599
a5c7eb37d14f added DatatypeHooks
haftmann
parents: 19458
diff changeset
   416
  end;
19346
c4c003abd830 cleanup in datatype package
haftmann
parents: 19008
diff changeset
   417
19818
5c5c1208a3fa adding case theorems for code generator
haftmann
parents: 19599
diff changeset
   418
fun add_datatype_case_defs dtco thy =
5c5c1208a3fa adding case theorems for code generator
haftmann
parents: 19599
diff changeset
   419
  let
5c5c1208a3fa adding case theorems for code generator
haftmann
parents: 19599
diff changeset
   420
    val {case_rewrites, ...} = DatatypePackage.the_datatype thy dtco
5c5c1208a3fa adding case theorems for code generator
haftmann
parents: 19599
diff changeset
   421
  in
22480
b20bc8029edb switched exception from arbitrary to undefined
haftmann
parents: 22435
diff changeset
   422
    fold_rev (CodegenData.add_func true) case_rewrites thy
19818
5c5c1208a3fa adding case theorems for code generator
haftmann
parents: 19599
diff changeset
   423
  end;
5c5c1208a3fa adding case theorems for code generator
haftmann
parents: 19599
diff changeset
   424
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   425
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   426
(** codetypes for code 2nd generation **)
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   427
20835
haftmann
parents: 20681
diff changeset
   428
(* abstraction over datatypes vs. type copies *)
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   429
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   430
fun codetypes_dependency thy =
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   431
  let
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   432
    val names =
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   433
      map (rpair true) (Symtab.keys (DatatypePackage.get_datatypes thy))
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   434
        @ map (rpair false) (TypecopyPackage.get_typecopies thy);
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   435
    fun add_node (name, is_dt) =
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   436
      let
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   437
        fun add_tycos (Type (tyco, tys)) = insert (op =) tyco #> fold add_tycos tys
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   438
          | add_tycos _ = I;
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   439
        val tys = if is_dt then
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   440
            (maps snd o snd o the o DatatypePackage.get_datatype_spec thy) name
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   441
          else
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   442
            [(#typ o the o TypecopyPackage.get_typecopy_info thy) name]
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   443
        val deps = (filter (AList.defined (op =) names) o maps (fn ty =>
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   444
          add_tycos ty [])) tys;
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   445
      in
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   446
        Graph.default_node (name, ())
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   447
        #> fold (fn name' =>
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   448
             Graph.default_node (name', ())
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   449
             #> Graph.add_edge (name', name)
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   450
           ) deps
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   451
      end
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   452
  in
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   453
    Graph.empty
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   454
    |> fold add_node names
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   455
    |> Graph.strong_conn
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   456
    |> map (AList.make (the o AList.lookup (op =) names))
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   457
  end;
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   458
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   459
fun get_spec thy (dtco, true) =
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   460
      (the o DatatypePackage.get_datatype_spec thy) dtco
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   461
  | get_spec thy (tyco, false) =
20835
haftmann
parents: 20681
diff changeset
   462
      TypecopyPackage.get_spec thy tyco;
haftmann
parents: 20681
diff changeset
   463
haftmann
parents: 20681
diff changeset
   464
local
haftmann
parents: 20681
diff changeset
   465
  fun get_eq_thms thy tyco = case DatatypePackage.get_datatype thy tyco
haftmann
parents: 20681
diff changeset
   466
   of SOME _ => get_eq_datatype thy tyco
haftmann
parents: 20681
diff changeset
   467
    | NONE => [TypecopyPackage.get_eq thy tyco];
21546
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   468
  fun constrain_op_eq_thms thy thms =
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   469
    let
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   470
      fun add_eq (Const ("op =", ty)) =
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   471
            fold (insert (eq_fst (op =)))
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   472
              (Term.add_tvarsT ty [])
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   473
        | add_eq _ =
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   474
            I
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   475
      val eqs = fold (fold_aterms add_eq o Thm.prop_of) thms [];
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   476
      val instT = map (fn (v_i, sort) =>
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   477
        (Thm.ctyp_of thy (TVar (v_i, sort)),
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   478
           Thm.ctyp_of thy (TVar (v_i, Sorts.inter_sort (Sign.classes_of thy) (sort, [HOLogic.class_eq]))))) eqs;
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   479
    in
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   480
      thms
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   481
      |> map (Thm.instantiate (instT, []))
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   482
    end;
20835
haftmann
parents: 20681
diff changeset
   483
in
haftmann
parents: 20681
diff changeset
   484
  fun get_eq thy tyco =
haftmann
parents: 20681
diff changeset
   485
    get_eq_thms thy tyco
haftmann
parents: 20681
diff changeset
   486
    |> maps ((#mk o #mk_rews o snd o MetaSimplifier.rep_ss o Simplifier.simpset_of) thy)
21546
268b6bed0cc8 removed HOL structure
haftmann
parents: 21516
diff changeset
   487
    |> constrain_op_eq_thms thy
20835
haftmann
parents: 20681
diff changeset
   488
end;
haftmann
parents: 20681
diff changeset
   489
haftmann
parents: 20681
diff changeset
   490
type hook = (string * (bool * ((string * sort) list * (string * typ list) list))) list
haftmann
parents: 20681
diff changeset
   491
  -> theory -> theory;
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   492
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   493
fun add_codetypes_hook_bootstrap hook thy =
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   494
  let
20835
haftmann
parents: 20681
diff changeset
   495
    fun add_spec thy (tyco, is_dt) =
haftmann
parents: 20681
diff changeset
   496
      (tyco, (is_dt, get_spec thy (tyco, is_dt)));
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   497
    fun datatype_hook dtcos thy =
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   498
      hook (map (add_spec thy) (map (rpair true) dtcos)) thy;
20835
haftmann
parents: 20681
diff changeset
   499
    fun typecopy_hook ((tyco, _)) thy =
haftmann
parents: 20681
diff changeset
   500
      hook ([(tyco, (false, TypecopyPackage.get_spec thy tyco))]) thy;
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   501
  in
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   502
    thy
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   503
    |> fold hook ((map o map) (add_spec thy) (codetypes_dependency thy))
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   504
    |> DatatypeHooks.add datatype_hook
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   505
    |> TypecopyPackage.add_hook typecopy_hook
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   506
  end;
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   507
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   508
fun the_codetypes_mut_specs thy ([(tyco, is_dt)]) =
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   509
      let
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   510
        val (vs, cs) = get_spec thy (tyco, is_dt)
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   511
      in (vs, [(tyco, (is_dt, cs))]) end
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   512
  | the_codetypes_mut_specs thy (tycos' as (tyco, true) :: _) =
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   513
      let
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   514
        val tycos = map fst tycos';
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   515
        val tycos'' = (map (#1 o snd) o #descr o DatatypePackage.the_datatype thy) tyco;
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   516
        val _ = if gen_subset (op =) (tycos, tycos'') then () else
22175
d9e3e4c30d6b adjusted names
haftmann
parents: 22052
diff changeset
   517
          error ("type constructors are not mutually recursive: " ^ (commas o map quote) tycos);
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   518
        val (vs::_, css) = split_list (map (the o DatatypePackage.get_datatype_spec thy) tycos);
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   519
      in (vs, map2 (fn (tyco, is_dt) => fn cs => (tyco, (is_dt, cs))) tycos' css) end;
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   520
20835
haftmann
parents: 20681
diff changeset
   521
haftmann
parents: 20681
diff changeset
   522
(* registering code types in code generator *)
haftmann
parents: 20681
diff changeset
   523
22435
16e6ddc30f92 clarified code
haftmann
parents: 22429
diff changeset
   524
fun codetype_hook dtspecs =
16e6ddc30f92 clarified code
haftmann
parents: 22429
diff changeset
   525
  fold (fn (dtco, (_, spec)) => CodegenData.add_datatype (dtco, spec)) dtspecs;
20835
haftmann
parents: 20681
diff changeset
   526
haftmann
parents: 20681
diff changeset
   527
haftmann
parents: 20681
diff changeset
   528
(* instrumentalizing the sort algebra *)
haftmann
parents: 20681
diff changeset
   529
22423
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   530
fun get_codetypes_arities thy tycos sort =
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   531
  let
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   532
    val pp = Sign.pp thy;
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   533
    val algebra = Sign.classes_of thy;
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   534
    val (vs_proto, css_proto) = the_codetypes_mut_specs thy tycos;
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   535
    val vs = map (fn (v, vsort) => (v, Sorts.inter_sort algebra (vsort, sort))) vs_proto;
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   536
    val css = map (fn (tyco, (_, cs)) => (tyco, cs)) css_proto;
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   537
    val algebra' = algebra
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   538
      |> fold (fn (tyco, _) =>
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   539
           Sorts.add_arities pp (tyco, map (fn class => (class, map snd vs)) sort)) css;
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   540
    fun typ_sort_inst ty = CodegenConsts.typ_sort_inst algebra' (Logic.varifyT ty, sort);
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   541
    val venv = Vartab.empty
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   542
      |> fold (fn (v, sort) => Vartab.update_new ((v, 0), sort)) vs
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   543
      |> fold (fn (_, cs) => fold (fn (_, tys) => fold typ_sort_inst tys) cs) css;
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   544
    fun inst (v, _) = (v, (the o Vartab.lookup venv) (v, 0));
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   545
    val vs' = map inst vs;
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   546
    fun mk_arity tyco = (tyco, map snd vs', sort);
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   547
    fun mk_cons tyco (c, tys) =
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   548
      let
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   549
        val tys' = (map o Term.map_type_tfree) (TFree o inst) tys;
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   550
        val ts = Name.names Name.context "a" tys';
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   551
        val ty = (tys' ---> Type (tyco, map TFree vs'));
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   552
      in list_comb (Const (c, ty), map Free ts) end;
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   553
  in
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   554
    map (fn (tyco, cs) => (tyco, (mk_arity tyco, map (mk_cons tyco) cs))) css |> SOME
c1836b14c63a dropped code datatype certificates
haftmann
parents: 22331
diff changeset
   555
  end handle Class_Error => NONE;
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   556
20597
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20439
diff changeset
   557
fun prove_codetypes_arities tac tycos sort f after_qed thy =
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   558
  case get_codetypes_arities thy tycos sort
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   559
   of NONE => thy
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   560
    | SOME insts => let
22331
7df6bc8cf0b0 unified arity parser/arguments;
wenzelm
parents: 22296
diff changeset
   561
        fun proven (tyco, asorts, sort) =
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   562
          Sorts.of_sort (Sign.classes_of thy)
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   563
            (Type (tyco, map TFree (Name.names Name.context "'a" asorts)), sort);
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   564
        val (arities, css) = (split_list o map_filter
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   565
          (fn (tyco, (arity, cs)) => if proven arity
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   566
            then NONE else SOME (arity, (tyco, cs)))) insts;
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   567
      in
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   568
        thy
21565
bd28361f4c5b simplified '?' operator;
wenzelm
parents: 21546
diff changeset
   569
        |> not (null arities) ? (
20835
haftmann
parents: 20681
diff changeset
   570
            f arities css
haftmann
parents: 20681
diff changeset
   571
            #-> (fn defs =>
21924
fe474e69e603 simplified class_package
haftmann
parents: 21708
diff changeset
   572
              ClassPackage.prove_instance_arity tac arities defs
20835
haftmann
parents: 20681
diff changeset
   573
            #> after_qed arities css))
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   574
      end;
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   575
20835
haftmann
parents: 20681
diff changeset
   576
haftmann
parents: 20681
diff changeset
   577
(* operational equality *)
haftmann
parents: 20681
diff changeset
   578
21046
fe1db2f991a7 moved HOL code generator setup to Code_Generator
haftmann
parents: 21012
diff changeset
   579
fun eq_hook specs =
20597
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20439
diff changeset
   580
  let
20835
haftmann
parents: 20681
diff changeset
   581
    fun add_eq_thms (dtco, (_, (vs, cs))) thy =
20597
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20439
diff changeset
   582
      let
20835
haftmann
parents: 20681
diff changeset
   583
        val thy_ref = Theory.self_ref thy;
22554
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22480
diff changeset
   584
        val const = ("op =", SOME dtco);
20835
haftmann
parents: 20681
diff changeset
   585
        val get_thms = (fn () => get_eq (Theory.deref thy_ref) dtco |> rev);
20597
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20439
diff changeset
   586
      in
22566
535ae9dd4c45 ranamed CodegenData.lazy to lazy_thms (avoid clash with Alice keywords);
wenzelm
parents: 22554
diff changeset
   587
        CodegenData.add_funcl (const, CodegenData.lazy_thms get_thms) thy
20597
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20439
diff changeset
   588
      end;
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20439
diff changeset
   589
  in
21924
fe474e69e603 simplified class_package
haftmann
parents: 21708
diff changeset
   590
    prove_codetypes_arities (ClassPackage.intro_classes_tac [])
20835
haftmann
parents: 20681
diff changeset
   591
      (map (fn (tyco, (is_dt, _)) => (tyco, is_dt)) specs)
21046
fe1db2f991a7 moved HOL code generator setup to Code_Generator
haftmann
parents: 21012
diff changeset
   592
      [HOLogic.class_eq] ((K o K o pair) []) ((K o K) (fold add_eq_thms specs))
20597
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20439
diff changeset
   593
  end;
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20439
diff changeset
   594
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   595
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   596
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   597
(** theory setup **)
9ffea7a8b31c added typecopy_package
haftmann
parents: 20389
diff changeset
   598
19008
14c1b2f5dda4 improved code generator devarification
haftmann
parents: 18963
diff changeset
   599
val setup = 
20597
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20439
diff changeset
   600
  add_codegen "datatype" datatype_codegen
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20439
diff changeset
   601
  #> add_tycodegen "datatype" datatype_tycodegen 
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20439
diff changeset
   602
  #> DatatypeHooks.add (fold add_datatype_case_const)
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20439
diff changeset
   603
  #> DatatypeHooks.add (fold add_datatype_case_defs)
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20439
diff changeset
   604
20835
haftmann
parents: 20681
diff changeset
   605
val setup_hooks =
20597
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20439
diff changeset
   606
  add_codetypes_hook_bootstrap codetype_hook
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20439
diff changeset
   607
  #> add_codetypes_hook_bootstrap eq_hook
65fe827aa595 code generation 2 adjustments
haftmann
parents: 20439
diff changeset
   608
12445
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   609
f17eb90bfd16 Code generator for datatypes.
berghofe
parents:
diff changeset
   610
end;