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