src/Pure/Tools/codegen_package.ML
author haftmann
Mon, 21 Aug 2006 11:02:40 +0200
changeset 20401 f01ae74f29f2
parent 20389 8b6ecb22ef35
child 20428 67fa1c6ba89e
permissions -rw-r--r--
more concise string serialization
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18169
45def66f86cb added modules for code generator generation two, not operational yet
haftmann
parents:
diff changeset
     1
(*  Title:      Pure/Tools/codegen_package.ML
45def66f86cb added modules for code generator generation two, not operational yet
haftmann
parents:
diff changeset
     2
    ID:         $Id$
45def66f86cb added modules for code generator generation two, not operational yet
haftmann
parents:
diff changeset
     3
    Author:     Florian Haftmann, TU Muenchen
45def66f86cb added modules for code generator generation two, not operational yet
haftmann
parents:
diff changeset
     4
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
     5
Code generator from Isabelle theories to
18169
45def66f86cb added modules for code generator generation two, not operational yet
haftmann
parents:
diff changeset
     6
intermediate language ("Thin-gol").
45def66f86cb added modules for code generator generation two, not operational yet
haftmann
parents:
diff changeset
     7
*)
45def66f86cb added modules for code generator generation two, not operational yet
haftmann
parents:
diff changeset
     8
45def66f86cb added modules for code generator generation two, not operational yet
haftmann
parents:
diff changeset
     9
signature CODEGEN_PACKAGE =
45def66f86cb added modules for code generator generation two, not operational yet
haftmann
parents:
diff changeset
    10
sig
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
    11
  val codegen_term: term -> theory -> CodegenThingol.iterm * theory;
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
    12
  val eval_term: (string (*reference name!*) * 'a ref) * term
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
    13
    -> theory -> 'a * theory;
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
    14
  val is_dtcon: string -> bool;
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
    15
  val consts_of_idfs: theory -> string list -> (string * typ) list;
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
    16
  val idfs_of_consts: theory -> (string * typ) list -> string list;
19967
33da452f0abe slight refinements
haftmann
parents: 19956
diff changeset
    17
  val get_root_module: theory -> CodegenThingol.module * theory;
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
    18
  val get_ml_fun_datatype: theory -> (string -> string)
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
    19
    -> ((string * CodegenThingol.funn) list -> Pretty.T)
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
    20
        * ((string * CodegenThingol.datatyp) list -> Pretty.T);
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
    21
20401
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
    22
  val add_pretty_list: string -> string -> string -> (Pretty.T list -> Pretty.T)
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
    23
   -> ((string -> string) * (string -> string)) option -> int * string
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
    24
   -> theory -> theory;
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
    25
  val add_pretty_ml_string: string -> string -> string -> string
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
    26
   -> (string -> string) -> (string -> string) -> string -> theory -> theory;
20175
0a8ca32f6e64 class package and codegen refinements
haftmann
parents: 20105
diff changeset
    27
  val purge_code: theory -> theory;
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
    28
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
    29
  type appgen;
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
    30
  val add_appconst: xstring * appgen -> theory -> theory;
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
    31
  val add_appconst_i: string * appgen -> theory -> theory;
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
    32
  val appgen_default: appgen;
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
    33
  val appgen_rep_bin: (theory -> term -> IntInf.int) -> appgen;
19607
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19597
diff changeset
    34
  val appgen_char: (term -> int option) -> appgen;
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
    35
  val appgen_case: (theory -> term
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
    36
    -> ((string * typ) list * ((term * typ) * (term * term) list)) option)
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
    37
    -> appgen;
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
    38
  val appgen_let: appgen;
19038
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    39
  val appgen_wfrec: appgen;
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
    40
19008
14c1b2f5dda4 improved code generator devarification
haftmann
parents: 18963
diff changeset
    41
  val print_code: theory -> unit;
18515
1cad5c2b2a0b substantial improvements in code generating
haftmann
parents: 18455
diff changeset
    42
18231
2eea98bbf650 improved failure tracking
haftmann
parents: 18217
diff changeset
    43
  structure CodegenData: THEORY_DATA;
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
    44
  type auxtab;
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
    45
  val mk_tabs: theory -> string list option -> (string * typ) list -> auxtab;
18169
45def66f86cb added modules for code generator generation two, not operational yet
haftmann
parents:
diff changeset
    46
end;
45def66f86cb added modules for code generator generation two, not operational yet
haftmann
parents:
diff changeset
    47
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
    48
structure CodegenPackage : CODEGEN_PACKAGE =
18169
45def66f86cb added modules for code generator generation two, not operational yet
haftmann
parents:
diff changeset
    49
struct
45def66f86cb added modules for code generator generation two, not operational yet
haftmann
parents:
diff changeset
    50
18850
92ef83e5eaea various improvements
haftmann
parents: 18756
diff changeset
    51
open CodegenThingol;
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
    52
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
    53
(* shallow name spaces *)
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
    54
20216
f30b73385060 added eval_term
haftmann
parents: 20213
diff changeset
    55
val nsp_module = ""; (*a dummy by convention*)
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
    56
val nsp_class = "class";
18454
6720b5010a57 slight improvements in name handling
haftmann
parents: 18385
diff changeset
    57
val nsp_tyco = "tyco";
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
    58
val nsp_const = "const";
18454
6720b5010a57 slight improvements in name handling
haftmann
parents: 18385
diff changeset
    59
val nsp_dtcon = "dtcon";
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
    60
val nsp_mem = "mem";
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
    61
val nsp_inst = "inst";
19213
ee83040c3c84 first running version of type classes
haftmann
parents: 19202
diff changeset
    62
val nsp_instmem = "instmem";
20216
f30b73385060 added eval_term
haftmann
parents: 20213
diff changeset
    63
val nsp_eval = "EVAL"; (*only for evaluation*)
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
    64
19038
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    65
fun add_nsp shallow name =
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    66
  name
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    67
  |> NameSpace.unpack
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    68
  |> split_last
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    69
  |> apsnd (single #> cons shallow)
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    70
  |> (op @)
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    71
  |> NameSpace.pack;
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    72
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    73
fun dest_nsp nsp idf =
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    74
  let
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    75
    val idf' = NameSpace.unpack idf;
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    76
    val (idf'', idf_base) = split_last idf';
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    77
    val (modl, shallow) = split_last idf'';
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    78
  in
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    79
    if nsp = shallow
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    80
   then (SOME o NameSpace.pack) (modl @ [idf_base])
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    81
    else NONE
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    82
  end;
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
    83
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
    84
fun if_nsp nsp f idf =
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
    85
  Option.map f (dest_nsp nsp idf);
19956
f992e507020e slight improvements in code generation
haftmann
parents: 19953
diff changeset
    86
f992e507020e slight improvements in code generation
haftmann
parents: 19953
diff changeset
    87
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
    88
(* code generator basics *)
18454
6720b5010a57 slight improvements in name handling
haftmann
parents: 18385
diff changeset
    89
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
    90
type auxtab = (bool * string list option) * CodegenTheorems.thmtab;
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
    91
type appgen = theory -> auxtab
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
    92
  -> (string * typ) * term list -> transact -> iterm * transact;
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
    93
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
    94
val serializers = ref (
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
    95
  Symtab.empty
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
    96
  |> Symtab.update (
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
    97
       #ml CodegenSerializer.serializers
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
    98
       |> apsnd (fn seri => seri
20183
fd546b0c8a7c major simplifications for integers
haftmann
parents: 20175
diff changeset
    99
            nsp_dtcon
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   100
            [[nsp_module], [nsp_class, nsp_tyco],
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   101
              [nsp_const, nsp_dtcon, nsp_class, nsp_mem, nsp_inst, nsp_instmem]]
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   102
          )
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   103
     )
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   104
  |> Symtab.update (
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   105
       #haskell CodegenSerializer.serializers
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   106
       |> apsnd (fn seri => seri
19953
2f54a51f1801 class package refinements, slight code generation refinements
haftmann
parents: 19884
diff changeset
   107
            (nsp_dtcon, [nsp_module, nsp_class, nsp_tyco, nsp_dtcon])
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   108
            [[nsp_module], [nsp_class], [nsp_tyco], [nsp_const,  nsp_mem],
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   109
              [nsp_dtcon], [nsp_inst], [nsp_instmem]]
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   110
          )
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   111
     )
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   112
);
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   113
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   114
18454
6720b5010a57 slight improvements in name handling
haftmann
parents: 18385
diff changeset
   115
(* theory data for code generator *)
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   116
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   117
type appgens = (int * (appgen * stamp)) Symtab.table
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   118
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   119
fun merge_appgens (x : appgens * appgens) =
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   120
  Symtab.merge (fn ((bounds1, (_, stamp1)), (bounds2, (_, stamp2))) =>
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   121
    bounds1 = bounds2 andalso stamp1 = stamp2) x
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   122
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   123
type target_data = {
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   124
  syntax_class: string Symtab.table,
18516
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   125
  syntax_tyco: (itype CodegenSerializer.pretty_syntax * stamp) Symtab.table,
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   126
  syntax_const: (iterm CodegenSerializer.pretty_syntax * stamp) Symtab.table
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   127
};
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   128
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   129
fun map_target_data f { syntax_class, syntax_tyco, syntax_const } =
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   130
  let
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   131
    val (syntax_class, syntax_tyco, syntax_const) =
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   132
      f (syntax_class, syntax_tyco, syntax_const)
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   133
  in {
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   134
    syntax_class = syntax_class,
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   135
    syntax_tyco = syntax_tyco,
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   136
    syntax_const = syntax_const } : target_data
18454
6720b5010a57 slight improvements in name handling
haftmann
parents: 18385
diff changeset
   137
  end;
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   138
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   139
fun merge_target_data
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   140
  ({ syntax_class = syntax_class1, syntax_tyco = syntax_tyco1, syntax_const = syntax_const1 },
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   141
   { syntax_class = syntax_class2, syntax_tyco = syntax_tyco2, syntax_const = syntax_const2 }) =
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   142
  { syntax_class = Symtab.merge (op =) (syntax_class1, syntax_class2),
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   143
    syntax_tyco = Symtab.merge (eq_snd (op =)) (syntax_tyco1, syntax_tyco2),
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   144
    syntax_const = Symtab.merge (eq_snd (op =)) (syntax_const1, syntax_const2) } : target_data;
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   145
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   146
structure CodegenData = TheoryDataFun
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   147
(struct
19953
2f54a51f1801 class package refinements, slight code generation refinements
haftmann
parents: 19884
diff changeset
   148
  val name = "Pure/codegen_package";
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   149
  type T = {
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   150
    modl: module,
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   151
    appgens: appgens,
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   152
    target_data: target_data Symtab.table
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   153
  };
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   154
  val empty = {
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   155
    modl = empty_module,
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   156
    appgens = Symtab.empty,
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   157
    target_data =
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   158
      Symtab.empty
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   159
      |> Symtab.fold (fn (target, _) =>
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   160
           Symtab.update (target,
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   161
             { syntax_class = Symtab.empty, syntax_tyco = Symtab.empty, syntax_const = Symtab.empty })
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   162
         ) (! serializers)
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   163
  } : T;
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   164
  val copy = I;
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   165
  val extend = I;
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   166
  fun merge _ (
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   167
    { modl = modl1, appgens = appgens1,
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   168
      target_data = target_data1 },
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   169
    { modl = modl2, appgens = appgens2,
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   170
      target_data = target_data2 }
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   171
  ) = {
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   172
    modl = merge_module (modl1, modl2),
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   173
    appgens = merge_appgens (appgens1, appgens2),
19025
596fb1eb7856 simplified TableFun.join;
wenzelm
parents: 19008
diff changeset
   174
    target_data = Symtab.join (K merge_target_data) (target_data1, target_data2)
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   175
  };
19341
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   176
  fun print thy (data : T) =
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   177
    let
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   178
      val module = #modl data
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   179
    in
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   180
      (Pretty.writeln o Pretty.chunks) [pretty_module module, pretty_deps module]
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   181
    end;
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   182
end);
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   183
18708
4b3dadb4fe33 setup: theory -> theory;
wenzelm
parents: 18704
diff changeset
   184
val _ = Context.add_setup CodegenData.init;
4b3dadb4fe33 setup: theory -> theory;
wenzelm
parents: 18704
diff changeset
   185
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   186
fun map_codegen_data f thy =
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   187
  case CodegenData.get thy
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   188
   of { modl, appgens, target_data } =>
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   189
      let val (modl, appgens, target_data) =
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   190
        f (modl, appgens, target_data)
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   191
      in CodegenData.put { modl = modl, appgens = appgens,
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   192
           target_data = target_data } thy end;
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   193
19341
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   194
val print_code = CodegenData.print;
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   195
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   196
val purge_code = map_codegen_data (fn (_, appgens, target_data) =>
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   197
  (empty_module, appgens, target_data));
18454
6720b5010a57 slight improvements in name handling
haftmann
parents: 18385
diff changeset
   198
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   199
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   200
(* name handling *)
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   201
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   202
fun idf_of_class thy class =
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   203
  CodegenNames.class thy class
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   204
  |> add_nsp nsp_class;
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   205
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   206
fun class_of_idf thy = if_nsp nsp_class (CodegenNames.class_rev thy);
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   207
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   208
fun idf_of_tyco thy tyco =
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   209
  CodegenNames.tyco thy tyco
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   210
  |> add_nsp nsp_tyco;
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   211
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   212
fun tyco_of_idf thy = if_nsp nsp_tyco (CodegenNames.tyco_rev thy);
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   213
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   214
fun idf_of_inst thy inst =
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   215
  CodegenNames.instance thy inst
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   216
  |> add_nsp nsp_inst;
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   217
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   218
fun inst_of_idf thy = if_nsp nsp_inst (CodegenNames.instance_rev thy);
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   219
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   220
fun idf_of_const thy thmtab (c_ty as (c, ty)) =
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   221
  if is_some (CodegenTheorems.get_dtyp_of_cons thmtab c_ty) then
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   222
    CodegenNames.const thy c_ty
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   223
    |> add_nsp nsp_dtcon
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   224
  else if (is_some o CodegenConsts.class_of_classop thy o CodegenConsts.typinst_of_typ thy) c_ty then
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   225
    CodegenNames.const thy c_ty
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   226
    |> add_nsp nsp_mem
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   227
  else
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   228
    CodegenNames.const thy c_ty
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   229
    |> add_nsp nsp_const;
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   230
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   231
fun const_of_idf thy idf =
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   232
  case dest_nsp nsp_const idf
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   233
   of SOME c => CodegenNames.const_rev thy c |> SOME
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   234
    | _ => (case dest_nsp nsp_dtcon idf
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   235
   of SOME c => CodegenNames.const_rev thy c |> SOME
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   236
    | _ => (case dest_nsp nsp_mem idf
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   237
   of SOME c => CodegenNames.const_rev thy c |> SOME
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   238
    | _ => NONE));
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   239
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   240
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   241
(* application generators *)
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   242
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   243
fun gen_add_appconst prep_const (raw_c, appgen) thy =
18454
6720b5010a57 slight improvements in name handling
haftmann
parents: 18385
diff changeset
   244
  let
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   245
    val c = prep_const thy raw_c;
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   246
    val i = (length o fst o strip_type o Sign.the_const_type thy) c
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   247
  in map_codegen_data
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   248
    (fn (modl, appgens, target_data) =>
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   249
       (modl,
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   250
        appgens |> Symtab.update (c, (i, (appgen, stamp ()))),
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   251
        target_data)) thy
18454
6720b5010a57 slight improvements in name handling
haftmann
parents: 18385
diff changeset
   252
  end;
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   253
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   254
val add_appconst = gen_add_appconst Sign.intern_const;
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   255
val add_appconst_i = gen_add_appconst (K I);
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   256
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   257
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   258
(* extraction kernel *)
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   259
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   260
fun check_strict thy f x ((false, _), _) =
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   261
      false
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   262
  | check_strict thy f x ((_, SOME targets), _) =
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   263
      exists (
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   264
        is_none o (fn tab => Symtab.lookup tab x) o f o the
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   265
          o (Symtab.lookup ((#target_data o CodegenData.get) thy))
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   266
      ) targets
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   267
  | check_strict thy f x ((true, _), _) =
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   268
      true;
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   269
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   270
fun no_strict ((_, targets), thmtab) = ((false, targets), thmtab);
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   271
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   272
fun sortlookups_const thy thmtab (c, typ_ctxt) =
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   273
  let
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   274
    val typ_decl = case CodegenTheorems.get_fun_thms thmtab (c, typ_ctxt)
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   275
     of thms as thm :: _ => CodegenTheorems.extr_typ thy thm
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   276
      | [] => (case AxClass.class_of_param thy c
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   277
         of SOME class => (case ClassPackage.the_consts_sign thy class of (v, cs) =>
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   278
              (Logic.varifyT o map_type_tfree (fn u as (w, _) =>
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   279
                if w = v then TFree (v, [class]) else TFree u))
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   280
              ((the o AList.lookup (op =) cs) c))
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   281
          | NONE => Sign.the_const_type thy c);
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   282
  in
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   283
    Vartab.empty
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   284
    |> Sign.typ_match thy (typ_decl, typ_ctxt) 
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   285
    |> Vartab.dest
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   286
    |> map (fn (_, (sort, ty)) => ClassPackage.sortlookup thy (ty, sort))
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   287
    |> filter_out null
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   288
  end;
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   289
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   290
fun ensure_def_class thy tabs cls trns =
18454
6720b5010a57 slight improvements in name handling
haftmann
parents: 18385
diff changeset
   291
  let
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   292
    fun defgen_class thy (tabs as (_, thmtab)) cls trns =
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   293
      case class_of_idf thy cls
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   294
       of SOME cls =>
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   295
            let
19283
88172041c084 fixed clsvar bug
haftmann
parents: 19280
diff changeset
   296
              val (v, cs) = (ClassPackage.the_consts_sign thy) cls;
19953
2f54a51f1801 class package refinements, slight code generation refinements
haftmann
parents: 19884
diff changeset
   297
              val sortctxts = map (ClassPackage.sortcontext_of_typ thy o snd) cs;
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   298
              val idfs = map (idf_of_const thy thmtab) cs;
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   299
            in
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   300
              trns
19341
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   301
              |> debug_msg (fn _ => "trying defgen class declaration for " ^ quote cls)
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   302
              |> fold_map (ensure_def_class thy tabs) (ClassPackage.the_superclasses thy cls)
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   303
              ||>> (fold_map (exprgen_type thy tabs) o map snd) cs
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   304
              ||>> (fold_map o fold_map) (exprgen_tyvar_sort thy tabs) sortctxts
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   305
              |-> (fn ((supcls, memtypes), sortctxts) => succeed
19283
88172041c084 fixed clsvar bug
haftmann
parents: 19280
diff changeset
   306
                (Class (supcls, (unprefix "'" v, idfs ~~ (sortctxts ~~ memtypes)))))
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   307
            end
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   308
        | _ =>
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   309
            trns
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   310
            |> fail ("No class definition found for " ^ quote cls);
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   311
    val cls' = idf_of_class thy cls;
18454
6720b5010a57 slight improvements in name handling
haftmann
parents: 18385
diff changeset
   312
  in
6720b5010a57 slight improvements in name handling
haftmann
parents: 18385
diff changeset
   313
    trns
19341
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   314
    |> debug_msg (fn _ => "generating class " ^ quote cls)
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   315
    |> ensure_def (defgen_class thy tabs) true ("generating class " ^ quote cls) cls'
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   316
    |> pair cls'
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   317
  end
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   318
and ensure_def_tyco thy (tabs as (_, thmtab)) tyco trns =
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   319
  let
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   320
    val tyco' = idf_of_tyco thy tyco;
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   321
    val strict = check_strict thy #syntax_tyco tyco' tabs;
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   322
    fun defgen_datatype thy (tabs as (_, thmtab)) dtco trns =
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   323
      case tyco_of_idf thy dtco
18963
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
   324
       of SOME dtco =>
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   325
         (case CodegenTheorems.get_dtyp_spec thmtab dtco
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   326
             of SOME (vars, cos) =>
19341
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   327
                  trns
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   328
                  |> debug_msg (fn _ => "trying defgen datatype for " ^ quote dtco)
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   329
                  |> fold_map (exprgen_tyvar_sort thy tabs) vars
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   330
                  ||>> fold_map (fn (c, tys) =>
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   331
                    fold_map (exprgen_type thy tabs) tys
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   332
                    #-> (fn tys' => pair (idf_of_const thy thmtab (c, tys ---> Type (dtco, map TFree vars)), tys'))) cos
19341
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   333
                  |-> (fn (vars, cos) => succeed (Datatype
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   334
                       (vars, cos)))
18963
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
   335
              | NONE =>
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
   336
                  trns
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   337
                  |> fail ("No datatype found for " ^ quote dtco))
18963
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
   338
        | NONE =>
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
   339
            trns
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   340
            |> fail ("Not a type constructor: " ^ quote dtco)
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   341
  in
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   342
    trns
19341
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   343
    |> debug_msg (fn _ => "generating type constructor " ^ quote tyco)
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   344
    |> ensure_def (defgen_datatype thy tabs) strict
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   345
        ("generating type constructor " ^ quote tyco) tyco'
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   346
    |> pair tyco'
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   347
  end
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   348
and exprgen_tyvar_sort thy tabs (v, sort) trns =
18516
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   349
  trns
18885
ee8b5c36ba2b substantial cleanup and simplifications
haftmann
parents: 18865
diff changeset
   350
  |> fold_map (ensure_def_class thy tabs) (ClassPackage.operational_sort_of thy sort)
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   351
  |-> (fn sort => pair (unprefix "'" v, sort))
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   352
and exprgen_type thy tabs (TVar _) trns =
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   353
      error "TVar encountered in typ during code generation"
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   354
  | exprgen_type thy tabs (TFree v_s) trns =
18516
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   355
      trns
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   356
      |> exprgen_tyvar_sort thy tabs v_s
19167
f237c0cb3882 refined representation of codegen intermediate language
haftmann
parents: 19150
diff changeset
   357
      |-> (fn (v, sort) => pair (ITyVar v))
18516
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   358
  | exprgen_type thy tabs (Type ("fun", [t1, t2])) trns =
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   359
      trns
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   360
      |> exprgen_type thy tabs t1
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   361
      ||>> exprgen_type thy tabs t2
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   362
      |-> (fn (t1', t2') => pair (t1' `-> t2'))
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   363
  | exprgen_type thy tabs (Type (tyco, tys)) trns =
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   364
      trns
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   365
      |> ensure_def_tyco thy tabs tyco
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   366
      ||>> fold_map (exprgen_type thy tabs) tys
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   367
      |-> (fn (tyco, tys) => pair (tyco `%% tys));
18516
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   368
18885
ee8b5c36ba2b substantial cleanup and simplifications
haftmann
parents: 18865
diff changeset
   369
fun exprgen_classlookup thy tabs (ClassPackage.Instance (inst, ls)) trns =
18517
788fa99aba33 slight improvements
haftmann
parents: 18516
diff changeset
   370
      trns
18885
ee8b5c36ba2b substantial cleanup and simplifications
haftmann
parents: 18865
diff changeset
   371
      |> ensure_def_inst thy tabs inst
ee8b5c36ba2b substantial cleanup and simplifications
haftmann
parents: 18865
diff changeset
   372
      ||>> (fold_map o fold_map) (exprgen_classlookup thy tabs) ls
ee8b5c36ba2b substantial cleanup and simplifications
haftmann
parents: 18865
diff changeset
   373
      |-> (fn (inst, ls) => pair (Instance (inst, ls)))
19253
f3ce97b5661a refined representation of instance dictionaries
haftmann
parents: 19213
diff changeset
   374
  | exprgen_classlookup thy tabs (ClassPackage.Lookup (clss, (v, (i, j)))) trns =
18516
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   375
      trns
18517
788fa99aba33 slight improvements
haftmann
parents: 18516
diff changeset
   376
      |> fold_map (ensure_def_class thy tabs) clss
19253
f3ce97b5661a refined representation of instance dictionaries
haftmann
parents: 19213
diff changeset
   377
      |-> (fn clss => pair (Lookup (clss, (v |> unprefix "'", if j = 1 then ~1 else i))))
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   378
and mk_fun thy (tabs as (_, thmtab)) (c, ty) trns =
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   379
  case CodegenTheorems.get_fun_thms thmtab (c, ty)
19953
2f54a51f1801 class package refinements, slight code generation refinements
haftmann
parents: 19884
diff changeset
   380
   of eq_thms as eq_thm :: _ =>
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   381
        let
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   382
          val msg = cat_lines ("generating code for theorems " :: map string_of_thm eq_thms);
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   383
          val ty = (Logic.unvarifyT o CodegenTheorems.extr_typ thy) eq_thm
19953
2f54a51f1801 class package refinements, slight code generation refinements
haftmann
parents: 19884
diff changeset
   384
          val sortcontext = ClassPackage.sortcontext_of_typ thy ty;
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   385
          fun dest_eqthm eq_thm =
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   386
            let
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   387
              val ((t, args), rhs) =
19953
2f54a51f1801 class package refinements, slight code generation refinements
haftmann
parents: 19884
diff changeset
   388
                (apfst strip_comb o Logic.dest_equals o Logic.legacy_unvarify o prop_of) eq_thm;
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   389
            in case t
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   390
             of Const (c', _) => if c' = c then (args, rhs)
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   391
                 else error ("Illegal function equation for " ^ quote c
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   392
                   ^ ", actually defining " ^ quote c')
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   393
              | _ => error ("Illegal function equation for " ^ quote c)
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   394
            end;
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   395
          fun exprgen_eq (args, rhs) trns =
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   396
            trns
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   397
            |> fold_map (exprgen_term thy tabs) args
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   398
            ||>> exprgen_term thy tabs rhs;
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   399
          fun checkvars (args, rhs) =
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   400
            if CodegenThingol.vars_distinct args then (args, rhs)
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   401
            else error ("Repeated variables on left hand side of function")
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   402
        in
18517
788fa99aba33 slight improvements
haftmann
parents: 18516
diff changeset
   403
          trns
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   404
          |> message msg (fn trns => trns
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   405
          |> fold_map (exprgen_eq o dest_eqthm) eq_thms
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   406
          |-> (fn eqs => pair (map checkvars eqs))
19953
2f54a51f1801 class package refinements, slight code generation refinements
haftmann
parents: 19884
diff changeset
   407
          ||>> fold_map (exprgen_tyvar_sort thy tabs) sortcontext
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   408
          ||>> exprgen_type thy tabs ty
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   409
          |-> (fn ((eqs, sortctxt), ty) => (pair o SOME) ((eqs, (sortctxt, ty)),
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   410
            map snd sortcontext)))
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   411
        end
19953
2f54a51f1801 class package refinements, slight code generation refinements
haftmann
parents: 19884
diff changeset
   412
    | [] => (NONE, trns)
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   413
and ensure_def_inst thy tabs (cls, tyco) trns =
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   414
  let
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   415
    fun defgen_inst thy (tabs as (_, thmtab)) inst trns =
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   416
      case inst_of_idf thy inst
19956
f992e507020e slight improvements in code generation
haftmann
parents: 19953
diff changeset
   417
       of SOME (class, tyco) =>
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   418
            let
18885
ee8b5c36ba2b substantial cleanup and simplifications
haftmann
parents: 18865
diff changeset
   419
              val (arity, memdefs) = ClassPackage.the_inst_sign thy (class, tyco);
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   420
              val (_, members) = ClassPackage.the_consts_sign thy class;
19953
2f54a51f1801 class package refinements, slight code generation refinements
haftmann
parents: 19884
diff changeset
   421
              val arity_typ = Type (tyco, (map TFree arity));
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   422
              val operational_arity = map_filter (fn (v, sort) =>
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   423
                case ClassPackage.operational_sort_of thy sort
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   424
                 of [] => NONE
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   425
                  | sort => SOME (v, sort)) arity;
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   426
              fun mk_instmemname (m, ty) =
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   427
                NameSpace.append (NameSpace.append ((NameSpace.drop_base o NameSpace.drop_base)
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   428
                  inst) nsp_instmem) (NameSpace.base (idf_of_const thy thmtab (m, ty)));
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   429
              fun gen_suparity supclass trns =
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   430
                trns
19136
00ade10f611d some refinements
haftmann
parents: 19111
diff changeset
   431
                |> ensure_def_class thy tabs supclass
19953
2f54a51f1801 class package refinements, slight code generation refinements
haftmann
parents: 19884
diff changeset
   432
                ||>> fold_map (exprgen_classlookup thy tabs)
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   433
                      (ClassPackage.sortlookup thy (arity_typ, [supclass]));
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   434
              fun gen_membr ((m0, ty0), (m, ty)) trns =
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   435
                trns
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   436
                |> ensure_def_const thy tabs (m0, ty0)
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   437
                ||>> exprgen_term thy tabs (Const (m, ty));
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   438
            in
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   439
              trns
19341
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   440
              |> debug_msg (fn _ => "trying defgen class instance for (" ^ quote cls
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   441
                   ^ ", " ^ quote tyco ^ ")")
18885
ee8b5c36ba2b substantial cleanup and simplifications
haftmann
parents: 18865
diff changeset
   442
              |> ensure_def_class thy tabs class
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   443
              ||>> ensure_def_tyco thy tabs tyco
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   444
              ||>> fold_map (exprgen_tyvar_sort thy tabs) arity
18885
ee8b5c36ba2b substantial cleanup and simplifications
haftmann
parents: 18865
diff changeset
   445
              ||>> fold_map gen_suparity (ClassPackage.the_superclasses thy class)
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   446
              ||>> fold_map gen_membr (members ~~ memdefs)
18885
ee8b5c36ba2b substantial cleanup and simplifications
haftmann
parents: 18865
diff changeset
   447
              |-> (fn ((((class, tyco), arity), suparities), memdefs) =>
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   448
                     succeed (Classinst ((class, (tyco, arity)), (suparities, memdefs))))
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   449
            end
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   450
        | _ =>
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   451
            trns |> fail ("No class instance found for " ^ quote inst);
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   452
    val inst = idf_of_inst thy (cls, tyco);
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   453
  in
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   454
    trns
19341
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   455
    |> debug_msg (fn _ => "generating instance " ^ quote cls ^ " / " ^ quote tyco)
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   456
    |> ensure_def (defgen_inst thy tabs) true
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   457
         ("generating instance " ^ quote cls ^ " / " ^ quote tyco) inst
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   458
    |> pair inst
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   459
  end
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   460
and ensure_def_const thy (tabs as (_, thmtab)) (c, ty) trns =
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   461
  let
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   462
    fun defgen_datatypecons thy (tabs as (_, thmtab)) co trns =
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   463
      case CodegenTheorems.get_dtyp_of_cons thmtab ((the o const_of_idf thy) co)
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   464
       of SOME tyco =>
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   465
            trns
19341
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   466
            |> debug_msg (fn _ => "trying defgen datatype constructor for " ^ quote co)
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   467
            |> ensure_def_tyco thy tabs tyco
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   468
            |-> (fn _ => succeed Bot)
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   469
        | _ =>
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   470
            trns
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   471
            |> fail ("Not a datatype constructor: "
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   472
                ^ (quote o CodegenConsts.string_of_const_typ thy) (c, ty));
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   473
    fun defgen_clsmem thy (tabs as (_, thmtab)) m trns =
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   474
      case CodegenConsts.class_of_classop thy
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   475
        ((CodegenConsts.typinst_of_typ thy o the o const_of_idf thy) m)
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   476
       of SOME class =>
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   477
            trns
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   478
            |> debug_msg (fn _ => "trying defgen class member for " ^ quote m)
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   479
            |> ensure_def_class thy tabs class
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   480
            |-> (fn _ => succeed Bot)
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   481
        | _ =>
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   482
            trns |> fail ("No class found for " ^ (quote o CodegenConsts.string_of_const_typ thy) (c, ty))
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   483
    fun defgen_funs thy (tabs as (_, thmtab)) c' trns =
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   484
        trns
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   485
        |> mk_fun thy tabs ((the o const_of_idf thy) c')
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   486
        |-> (fn SOME (funn, _) => succeed (Fun funn)
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   487
              | NONE => fail ("No defining equations found for "
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   488
                   ^ (quote o CodegenConsts.string_of_const_typ thy) (c, ty)))
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   489
    fun get_defgen tabs idf strict =
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   490
      if (is_some oo dest_nsp) nsp_const idf
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   491
      then defgen_funs thy tabs strict
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   492
      else if (is_some oo dest_nsp) nsp_mem idf
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   493
      then defgen_clsmem thy tabs strict
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   494
      else if (is_some oo dest_nsp) nsp_dtcon idf
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   495
      then defgen_datatypecons thy tabs strict
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   496
      else error ("Illegal shallow name space for constant: " ^ quote idf);
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   497
    val idf = idf_of_const thy thmtab (c, ty);
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   498
    val strict = check_strict thy #syntax_const idf tabs;
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   499
  in
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   500
    trns
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   501
    |> debug_msg (fn _ => "generating constant "
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   502
        ^ (quote o CodegenConsts.string_of_const_typ thy) (c, ty))
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   503
    |> ensure_def (get_defgen tabs idf) strict ("generating constant "
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   504
         ^ CodegenConsts.string_of_const_typ thy (c, ty)) idf
18963
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
   505
    |> pair idf
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   506
  end
18517
788fa99aba33 slight improvements
haftmann
parents: 18516
diff changeset
   507
and exprgen_term thy tabs (Const (f, ty)) trns =
788fa99aba33 slight improvements
haftmann
parents: 18516
diff changeset
   508
      trns
788fa99aba33 slight improvements
haftmann
parents: 18516
diff changeset
   509
      |> appgen thy tabs ((f, ty), [])
18516
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   510
      |-> (fn e => pair e)
18912
dd168daf172d improvement in devarifications
haftmann
parents: 18885
diff changeset
   511
  | exprgen_term thy tabs (Var _) trns =
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   512
      error "Var encountered in term during code generation"
18516
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   513
  | exprgen_term thy tabs (Free (v, ty)) trns =
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   514
      trns
18912
dd168daf172d improvement in devarifications
haftmann
parents: 18885
diff changeset
   515
      |> exprgen_type thy tabs ty
19167
f237c0cb3882 refined representation of codegen intermediate language
haftmann
parents: 19150
diff changeset
   516
      |-> (fn ty => pair (IVar v))
19967
33da452f0abe slight refinements
haftmann
parents: 19956
diff changeset
   517
  | exprgen_term thy tabs (Abs (raw_v, ty, raw_t)) trns =
19136
00ade10f611d some refinements
haftmann
parents: 19111
diff changeset
   518
      let
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   519
        val (v, t) = Syntax.variant_abs (CodegenNames.purify_var raw_v, ty, raw_t);
19136
00ade10f611d some refinements
haftmann
parents: 19111
diff changeset
   520
      in
00ade10f611d some refinements
haftmann
parents: 19111
diff changeset
   521
        trns
00ade10f611d some refinements
haftmann
parents: 19111
diff changeset
   522
        |> exprgen_type thy tabs ty
00ade10f611d some refinements
haftmann
parents: 19111
diff changeset
   523
        ||>> exprgen_term thy tabs t
19167
f237c0cb3882 refined representation of codegen intermediate language
haftmann
parents: 19150
diff changeset
   524
        |-> (fn (ty, e) => pair ((v, ty) `|-> e))
19136
00ade10f611d some refinements
haftmann
parents: 19111
diff changeset
   525
      end
18516
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   526
  | exprgen_term thy tabs (t as t1 $ t2) trns =
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   527
      let
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   528
        val (t', ts) = strip_comb t
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   529
      in case t'
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   530
       of Const (f, ty) =>
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   531
            trns
18517
788fa99aba33 slight improvements
haftmann
parents: 18516
diff changeset
   532
            |> appgen thy tabs ((f, ty), ts)
18516
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   533
            |-> (fn e => pair e)
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   534
        | _ =>
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   535
            trns
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   536
            |> exprgen_term thy tabs t'
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   537
            ||>> fold_map (exprgen_term thy tabs) ts
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   538
            |-> (fn (e, es) => pair (e `$$ es))
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   539
      end
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   540
and appgen_default thy (tabs as (_, thmtab)) ((c, ty), ts) trns =
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   541
  trns
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   542
  |> ensure_def_const thy tabs (c, ty)
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   543
  ||>> exprgen_type thy tabs ty
18885
ee8b5c36ba2b substantial cleanup and simplifications
haftmann
parents: 18865
diff changeset
   544
  ||>> (fold_map o fold_map) (exprgen_classlookup thy tabs)
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   545
         (sortlookups_const thy thmtab (c, ty))
18912
dd168daf172d improvement in devarifications
haftmann
parents: 18885
diff changeset
   546
  ||>> fold_map (exprgen_term thy tabs) ts
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   547
  |-> (fn (((c, ty), ls), es) =>
19202
0b9eb4b0ad98 substantial improvement in codegen iml
haftmann
parents: 19177
diff changeset
   548
         pair (IConst (c, (ls, ty)) `$$ es))
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   549
and appgen thy tabs ((f, ty), ts) trns =
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   550
  case Symtab.lookup ((#appgens o CodegenData.get) thy) f
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   551
   of SOME (i, (ag, _)) =>
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   552
        if length ts < i then
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   553
          let
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   554
            val tys = Library.take (i - length ts, ((fst o strip_type) ty));
20192
956cd30ef3be renamed Name.give_names to Name.names and moved Name.alphanum to Symbol.alphanum
haftmann
parents: 20191
diff changeset
   555
            val vs = Name.names (Name.declare f Name.context) "a" tys;
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   556
          in
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   557
            trns
18912
dd168daf172d improvement in devarifications
haftmann
parents: 18885
diff changeset
   558
            |> fold_map (exprgen_type thy tabs) tys
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   559
            ||>> ag thy tabs ((f, ty), ts @ map Free vs)
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   560
            |-> (fn (tys, e) => pair (map2 (fn (v, _) => pair v) vs tys `|--> e))
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   561
          end
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   562
        else if length ts > i then
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   563
          trns
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   564
          |> ag thy tabs ((f, ty), Library.take (i, ts))
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   565
          ||>> fold_map (exprgen_term thy tabs) (Library.drop (i, ts))
19167
f237c0cb3882 refined representation of codegen intermediate language
haftmann
parents: 19150
diff changeset
   566
          |-> (fn (e, es) => pair (e `$$ es))
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   567
        else
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   568
          trns
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   569
          |> ag thy tabs ((f, ty), ts)
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   570
    | NONE =>
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   571
        trns
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   572
        |> appgen_default thy tabs ((f, ty), ts);
18516
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   573
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   574
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   575
(* parametrized generators, for instantiation in HOL *)
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   576
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   577
fun appgen_rep_bin int_of_numeral thy tabs (app as (c as (_, ty), [bin])) trns =
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   578
  case try (int_of_numeral thy) bin
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   579
   of SOME i => if i < 0 then (*preprocessor eliminates negative numerals*)
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   580
        trns
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   581
        |> appgen_default thy (no_strict tabs) app
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   582
      else
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   583
        trns
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   584
        |> exprgen_term thy (no_strict tabs) (Const c)
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   585
        ||>> exprgen_term thy (no_strict tabs) bin
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   586
        |-> (fn (e1, e2) => pair (CodegenThingol.INum (i, e1 `$ e2)))
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   587
    | NONE =>
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   588
        trns
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   589
        |> appgen_default thy tabs app;
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   590
19607
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19597
diff changeset
   591
fun appgen_char char_to_index thy tabs (app as ((_, ty), _)) trns =
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19597
diff changeset
   592
  case (char_to_index o list_comb o apfst Const) app
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19597
diff changeset
   593
   of SOME i =>
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19597
diff changeset
   594
        trns
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19597
diff changeset
   595
        |> exprgen_type thy tabs ty
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19597
diff changeset
   596
        ||>> appgen_default thy tabs app
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19597
diff changeset
   597
        |-> (fn (_, e0) => pair (IChar (chr i, e0)))
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19597
diff changeset
   598
    | NONE =>
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19597
diff changeset
   599
        trns
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19597
diff changeset
   600
        |> appgen_default thy tabs app;
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19597
diff changeset
   601
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   602
fun appgen_case dest_case_expr thy tabs (app as (c_ty, ts)) trns =
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   603
  let
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   604
    val SOME ([], ((st, sty), ds)) = dest_case_expr thy (list_comb (Const c_ty, ts));
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   605
    fun clausegen (dt, bt) trns =
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   606
      trns
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   607
      |> exprgen_term thy tabs dt
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   608
      ||>> exprgen_term thy tabs bt;
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   609
  in
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   610
    trns
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   611
    |> exprgen_term thy tabs st
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   612
    ||>> exprgen_type thy tabs sty
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   613
    ||>> fold_map clausegen ds
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   614
    ||>> appgen_default thy tabs app
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   615
    |-> (fn (((se, sty), ds), e0) => pair (ICase (((se, sty), ds), e0)))
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   616
  end;
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   617
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   618
fun appgen_let thy tabs (app as (_, [st, ct])) trns =
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   619
  trns
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   620
  |> exprgen_term thy tabs ct
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   621
  ||>> exprgen_term thy tabs st
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   622
  ||>> appgen_default thy tabs app
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   623
  |-> (fn (((v, ty) `|-> be, se), e0) =>
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   624
            pair (ICase (((se, ty), case be
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   625
              of ICase (((IVar w, _), ds), _) => if v = w then ds else [(IVar v, be)]
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   626
               | _ => [(IVar v, be)]
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   627
            ), e0))
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   628
        | (_, e0) => pair e0);
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   629
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   630
fun appgen_wfrec thy (tabs as (_, thmtab)) ((c, ty), [_, tf, tx]) trns =
19038
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
   631
  let
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   632
    val ty_def = (op ---> o apfst tl o strip_type o Logic.unvarifyT o Sign.the_const_type thy) c;
19038
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
   633
    val ty' = (op ---> o apfst tl o strip_type) ty;
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   634
    val idf = idf_of_const thy thmtab (c, ty);
19038
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
   635
  in
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
   636
    trns
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   637
    |> ensure_def ((K o fail) "no extraction for wfrec") false ("generating wfrec") idf
19136
00ade10f611d some refinements
haftmann
parents: 19111
diff changeset
   638
    |> exprgen_type thy tabs ty'
00ade10f611d some refinements
haftmann
parents: 19111
diff changeset
   639
    ||>> (fold_map o fold_map) (exprgen_classlookup thy tabs)
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   640
           (sortlookups_const thy thmtab (c, ty))
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   641
    ||>> exprgen_type thy tabs ty_def
19136
00ade10f611d some refinements
haftmann
parents: 19111
diff changeset
   642
    ||>> exprgen_term thy tabs tf
00ade10f611d some refinements
haftmann
parents: 19111
diff changeset
   643
    ||>> exprgen_term thy tabs tx
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   644
    |-> (fn ((((_, ls), ty), tf), tx) => pair (IConst (idf, (ls, ty)) `$ tf `$ tx))
19038
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
   645
  end;
62c5f7591a43 improved handling of iml abstractions
haftmann
parents: 19025
diff changeset
   646
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   647
18516
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   648
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   649
(** theory interface **)
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   650
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   651
fun mk_tabs thy targets cs =
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   652
  ((true, targets), CodegenTheorems.mk_thmtab thy cs);
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   653
18756
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   654
fun get_serializer target =
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   655
  case Symtab.lookup (!serializers) target
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   656
   of SOME seri => seri
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   657
    | NONE => Scan.fail_with (fn _ => "Unknown code target language: " ^ quote target) ();
18335
99baddf6b0d0 various improvements
haftmann
parents: 18330
diff changeset
   658
18516
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   659
fun map_module f =
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   660
  map_codegen_data (fn (modl, gens, target_data) =>
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   661
    (f modl, gens, target_data));
18516
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   662
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   663
fun purge_defs NONE thy =
19341
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   664
      map_module (K CodegenThingol.empty_module) thy
20191
b43fd26e1aaa improvements for lazy code generation
haftmann
parents: 20183
diff changeset
   665
  | purge_defs (SOME []) thy =
b43fd26e1aaa improvements for lazy code generation
haftmann
parents: 20183
diff changeset
   666
      thy
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   667
  | purge_defs (SOME cs) thy =
20191
b43fd26e1aaa improvements for lazy code generation
haftmann
parents: 20183
diff changeset
   668
      map_module (K CodegenThingol.empty_module) thy;
b43fd26e1aaa improvements for lazy code generation
haftmann
parents: 20183
diff changeset
   669
      (*let
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   670
        val tabs = mk_tabs thy NONE;
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   671
        val idfs = map (idf_of_const' thy tabs) cs;
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   672
        fun purge idfs modl =
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   673
          CodegenThingol.purge_module (filter (can (get_def modl)) idfs) modl
19341
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   674
      in
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   675
        map_module (purge idfs) thy
20191
b43fd26e1aaa improvements for lazy code generation
haftmann
parents: 20183
diff changeset
   676
      end;*)
19341
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   677
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   678
fun expand_module targets cs init gen arg thy =
19597
8ced57ffc090 major refinement of codegen_theorems.ML
haftmann
parents: 19571
diff changeset
   679
  thy
8ced57ffc090 major refinement of codegen_theorems.ML
haftmann
parents: 19571
diff changeset
   680
  |> CodegenTheorems.notify_dirty
8ced57ffc090 major refinement of codegen_theorems.ML
haftmann
parents: 19571
diff changeset
   681
  |> `(#modl o CodegenData.get)
8ced57ffc090 major refinement of codegen_theorems.ML
haftmann
parents: 19571
diff changeset
   682
  |> (fn (modl, thy) =>
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   683
        (start_transact init (gen thy (mk_tabs thy targets cs) arg) modl, thy))
19597
8ced57ffc090 major refinement of codegen_theorems.ML
haftmann
parents: 19571
diff changeset
   684
  |-> (fn (x, modl) => map_module (K modl) #> pair x);
18516
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   685
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   686
fun consts_of t =
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   687
  fold_aterms (fn Const c => cons c | _ => I) t [];
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   688
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20076
diff changeset
   689
fun codegen_term t thy =
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   690
  let
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   691
    val _ = Thm.cterm_of thy t;
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   692
(*     val _ = writeln "STARTING GENERATION";  *)
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   693
(*     val _ = (writeln o Sign.string_of_term thy) t;  *)
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   694
  in
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   695
    thy
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   696
    |> expand_module (SOME [] (*(Symtab.keys (#target_data (CodegenData.get thy)))*)) (consts_of t) NONE exprgen_term t
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   697
  end;
19136
00ade10f611d some refinements
haftmann
parents: 19111
diff changeset
   698
00ade10f611d some refinements
haftmann
parents: 19111
diff changeset
   699
val is_dtcon = has_nsp nsp_dtcon;
00ade10f611d some refinements
haftmann
parents: 19111
diff changeset
   700
00ade10f611d some refinements
haftmann
parents: 19111
diff changeset
   701
fun consts_of_idfs thy =
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   702
  map (the o const_of_idf thy);
19150
1457d810b408 class package and codegen refinements
haftmann
parents: 19136
diff changeset
   703
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   704
fun idfs_of_consts thy cs =
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   705
  map (idf_of_const thy (snd (mk_tabs thy NONE cs))) cs;
19150
1457d810b408 class package and codegen refinements
haftmann
parents: 19136
diff changeset
   706
19967
33da452f0abe slight refinements
haftmann
parents: 19956
diff changeset
   707
fun get_root_module thy =
33da452f0abe slight refinements
haftmann
parents: 19956
diff changeset
   708
  thy
33da452f0abe slight refinements
haftmann
parents: 19956
diff changeset
   709
  |> CodegenTheorems.notify_dirty
33da452f0abe slight refinements
haftmann
parents: 19956
diff changeset
   710
  |> `(#modl o CodegenData.get);
19042
630b8dd0b31a exported some interfaces useful for other code generator approaches
haftmann
parents: 19038
diff changeset
   711
20213
2b319e945905 added eval_term
haftmann
parents: 20194
diff changeset
   712
fun eval_term (ref_spec, t) thy =
2b319e945905 added eval_term
haftmann
parents: 20194
diff changeset
   713
  let
20401
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   714
    val _ = Term.fold_atyps (fn _ =>
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   715
      error ("Term" ^ Sign.string_of_term thy t ^ "is polymorhpic"))
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   716
      (Term.fastype_of t);
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   717
    fun preprocess_term t =
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   718
      let
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   719
        val x = Free (Name.variant (add_term_names (t, [])) "x", fastype_of t);
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   720
        (* fake definition *)
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   721
        val eq = setmp quick_and_dirty true (SkipProof.make_thm thy)
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   722
          (Logic.mk_equals (x, t));
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   723
        fun err () = error "preprocess_term: bad preprocessor"
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   724
      in case map prop_of (CodegenTheorems.preprocess thy [eq])
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   725
       of [Const ("==", _) $ x' $ t'] => if x = x' then t' else err ()
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   726
        | _ => err ()
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   727
      end;
20213
2b319e945905 added eval_term
haftmann
parents: 20194
diff changeset
   728
    val target_data =
2b319e945905 added eval_term
haftmann
parents: 20194
diff changeset
   729
      ((fn data => (the o Symtab.lookup data) "ml") o #target_data o CodegenData.get) thy;
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   730
    val eval = CodegenSerializer.eval_term nsp_eval nsp_dtcon [[nsp_module], [nsp_class, nsp_tyco], [nsp_const, nsp_dtcon, nsp_class, nsp_mem, nsp_inst, nsp_instmem], [nsp_eval]]
20213
2b319e945905 added eval_term
haftmann
parents: 20194
diff changeset
   731
      ((Option.map fst oo Symtab.lookup) (#syntax_tyco target_data),
2b319e945905 added eval_term
haftmann
parents: 20194
diff changeset
   732
       (Option.map fst oo Symtab.lookup) (#syntax_const target_data))
2b319e945905 added eval_term
haftmann
parents: 20194
diff changeset
   733
      (Symtab.keys (#syntax_tyco target_data) @ Symtab.keys (#syntax_const target_data))
2b319e945905 added eval_term
haftmann
parents: 20194
diff changeset
   734
  in
2b319e945905 added eval_term
haftmann
parents: 20194
diff changeset
   735
    thy
20389
8b6ecb22ef35 cleanup
haftmann
parents: 20386
diff changeset
   736
    |> codegen_term (preprocess_term t)
20213
2b319e945905 added eval_term
haftmann
parents: 20194
diff changeset
   737
    ||>> `(#modl o CodegenData.get)
2b319e945905 added eval_term
haftmann
parents: 20194
diff changeset
   738
    |-> (fn (t', modl) => `(fn _ => eval (ref_spec, t') modl))
2b319e945905 added eval_term
haftmann
parents: 20194
diff changeset
   739
  end;
2b319e945905 added eval_term
haftmann
parents: 20194
diff changeset
   740
19042
630b8dd0b31a exported some interfaces useful for other code generator approaches
haftmann
parents: 19038
diff changeset
   741
fun get_ml_fun_datatype thy resolv =
630b8dd0b31a exported some interfaces useful for other code generator approaches
haftmann
parents: 19038
diff changeset
   742
  let
19150
1457d810b408 class package and codegen refinements
haftmann
parents: 19136
diff changeset
   743
    val target_data =
19042
630b8dd0b31a exported some interfaces useful for other code generator approaches
haftmann
parents: 19038
diff changeset
   744
      ((fn data => (the o Symtab.lookup data) "ml") o #target_data o CodegenData.get) thy;
630b8dd0b31a exported some interfaces useful for other code generator approaches
haftmann
parents: 19038
diff changeset
   745
  in
20183
fd546b0c8a7c major simplifications for integers
haftmann
parents: 20175
diff changeset
   746
    CodegenSerializer.ml_fun_datatype nsp_dtcon
19042
630b8dd0b31a exported some interfaces useful for other code generator approaches
haftmann
parents: 19038
diff changeset
   747
      ((Option.map fst oo Symtab.lookup o #syntax_tyco) target_data,
630b8dd0b31a exported some interfaces useful for other code generator approaches
haftmann
parents: 19038
diff changeset
   748
      (Option.map fst oo Symtab.lookup o #syntax_const) target_data)
630b8dd0b31a exported some interfaces useful for other code generator approaches
haftmann
parents: 19038
diff changeset
   749
      resolv
630b8dd0b31a exported some interfaces useful for other code generator approaches
haftmann
parents: 19038
diff changeset
   750
  end;
18516
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   751
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   752
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   753
(** target languages **)
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   754
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   755
(* syntax *)
18516
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   756
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   757
fun read_typ thy =
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   758
  Sign.read_typ (thy, K NONE);
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   759
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   760
fun read_quote get reader consts_of gen raw thy =
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   761
  let
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   762
    val it = reader thy raw;
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   763
    val cs = consts_of it;
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   764
  in
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   765
    thy
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   766
    |> expand_module (SOME (Symtab.keys (#target_data (CodegenData.get thy)))) cs ((SOME o get) thy)
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   767
         (fn thy => fn tabs => gen thy tabs) [it]
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   768
    |-> (fn [x] => pair x)
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   769
  end;
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   770
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   771
fun gen_add_syntax_class prep_class class target pretty thy =
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   772
  thy
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   773
  |> map_codegen_data
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   774
    (fn (modl, gens, target_data) =>
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   775
       (modl, gens,
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   776
        target_data |> Symtab.map_entry target
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   777
          (map_target_data
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   778
            (fn (syntax_class, syntax_tyco, syntax_const) =>
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   779
             (syntax_class
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   780
              |> Symtab.update (prep_class thy class, pretty), syntax_tyco, syntax_const)))));
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   781
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   782
val add_syntax_class = gen_add_syntax_class Sign.intern_class;
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   783
18963
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
   784
fun parse_syntax_tyco raw_tyco =
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   785
  let
19042
630b8dd0b31a exported some interfaces useful for other code generator approaches
haftmann
parents: 19038
diff changeset
   786
    fun prep_tyco thy raw_tyco =
630b8dd0b31a exported some interfaces useful for other code generator approaches
haftmann
parents: 19038
diff changeset
   787
      raw_tyco
18963
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
   788
      |> Sign.intern_type thy
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   789
      |> idf_of_tyco thy;
19042
630b8dd0b31a exported some interfaces useful for other code generator approaches
haftmann
parents: 19038
diff changeset
   790
    fun no_args_tyco thy raw_tyco =
630b8dd0b31a exported some interfaces useful for other code generator approaches
haftmann
parents: 19038
diff changeset
   791
      AList.lookup (op =) ((NameSpace.dest_table o #types o Type.rep_tsig o Sign.tsig_of) thy)
630b8dd0b31a exported some interfaces useful for other code generator approaches
haftmann
parents: 19038
diff changeset
   792
        (Sign.intern_type thy raw_tyco)
630b8dd0b31a exported some interfaces useful for other code generator approaches
haftmann
parents: 19038
diff changeset
   793
      |> (fn SOME ((Type.LogicalType i), _) => i);
18963
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
   794
    fun mk reader target thy =
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   795
      let
18756
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   796
        val _ = get_serializer target;
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   797
        val tyco = prep_tyco thy raw_tyco;
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   798
      in
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   799
        thy
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   800
        |> reader
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   801
        |-> (fn pretty => map_codegen_data
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   802
          (fn (modl, gens, target_data) =>
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   803
             (modl, gens,
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   804
              target_data |> Symtab.map_entry target
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   805
                (map_target_data
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   806
                  (fn (syntax_class, syntax_tyco, syntax_const) =>
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   807
                   (syntax_class, syntax_tyco |> Symtab.update
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   808
                      (tyco, (pretty, stamp ())),
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   809
                    syntax_const))))))
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   810
      end;
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   811
  in
19042
630b8dd0b31a exported some interfaces useful for other code generator approaches
haftmann
parents: 19038
diff changeset
   812
    CodegenSerializer.parse_syntax (fn thy => no_args_tyco thy raw_tyco)
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   813
    (read_quote (fn thy => prep_tyco thy raw_tyco) read_typ (K [])
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   814
      (fn thy => fn tabs => fold_map (exprgen_type thy tabs)))
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   815
    #-> (fn reader => pair (mk reader))
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   816
  end;
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   817
18704
2c86ced392a8 substantial improvement in serialization handling
haftmann
parents: 18702
diff changeset
   818
fun add_pretty_syntax_const c target pretty =
2c86ced392a8 substantial improvement in serialization handling
haftmann
parents: 18702
diff changeset
   819
  map_codegen_data
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   820
    (fn (modl, gens, target_data) =>
18704
2c86ced392a8 substantial improvement in serialization handling
haftmann
parents: 18702
diff changeset
   821
       (modl, gens,
2c86ced392a8 substantial improvement in serialization handling
haftmann
parents: 18702
diff changeset
   822
        target_data |> Symtab.map_entry target
2c86ced392a8 substantial improvement in serialization handling
haftmann
parents: 18702
diff changeset
   823
          (map_target_data
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   824
            (fn (syntax_class, syntax_tyco, syntax_const) =>
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   825
             (syntax_class, syntax_tyco,
18704
2c86ced392a8 substantial improvement in serialization handling
haftmann
parents: 18702
diff changeset
   826
              syntax_const
2c86ced392a8 substantial improvement in serialization handling
haftmann
parents: 18702
diff changeset
   827
              |> Symtab.update
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   828
                 (c, (pretty, stamp ())))))));
18704
2c86ced392a8 substantial improvement in serialization handling
haftmann
parents: 18702
diff changeset
   829
18963
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
   830
fun parse_syntax_const raw_const =
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   831
  let
18963
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
   832
    fun prep_const thy raw_const =
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   833
      let
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   834
        val c_ty = CodegenConsts.read_const_typ thy raw_const
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   835
      in idf_of_const thy (snd (mk_tabs thy NONE [c_ty])) c_ty end;
19042
630b8dd0b31a exported some interfaces useful for other code generator approaches
haftmann
parents: 19038
diff changeset
   836
    fun no_args_const thy raw_const =
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   837
      (length o fst o strip_type o snd o CodegenConsts.read_const_typ thy) raw_const;
18963
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
   838
    fun mk reader target thy =
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   839
      let
18756
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   840
        val _ = get_serializer target;
18963
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
   841
        val c = prep_const thy raw_const;
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   842
      in
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   843
        thy
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   844
        |> reader
18704
2c86ced392a8 substantial improvement in serialization handling
haftmann
parents: 18702
diff changeset
   845
        |-> (fn pretty => add_pretty_syntax_const c target pretty)
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   846
      end;
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   847
  in
19042
630b8dd0b31a exported some interfaces useful for other code generator approaches
haftmann
parents: 19038
diff changeset
   848
    CodegenSerializer.parse_syntax (fn thy => no_args_const thy raw_const)
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   849
      (read_quote (fn thy => prep_const thy raw_const) Sign.read_term consts_of
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   850
      (fn thy => fn tabs => fold_map (exprgen_term thy tabs)))
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   851
    #-> (fn reader => pair (mk reader))
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   852
  end;
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   853
20401
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   854
fun add_pretty_list target raw_nil raw_cons mk_list mk_char_string target_cons thy =
18704
2c86ced392a8 substantial improvement in serialization handling
haftmann
parents: 18702
diff changeset
   855
  let
18756
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   856
    val _ = get_serializer target;
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   857
    fun prep_const raw =
18704
2c86ced392a8 substantial improvement in serialization handling
haftmann
parents: 18702
diff changeset
   858
      let
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   859
        val c = Sign.intern_const thy raw
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   860
      in (c, Sign.the_const_type thy c) end;
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   861
    val nil' = prep_const raw_nil;
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   862
    val cons' = prep_const raw_cons;
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   863
    val tabs = mk_tabs thy NONE [nil', cons'];
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   864
    fun mk_const c_ty =
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   865
      idf_of_const thy (snd tabs) c_ty;
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   866
    val nil'' = mk_const nil';
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   867
    val cons'' = mk_const cons';
20401
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   868
    val pr = CodegenSerializer.pretty_list nil'' cons'' mk_list mk_char_string target_cons;
18704
2c86ced392a8 substantial improvement in serialization handling
haftmann
parents: 18702
diff changeset
   869
  in
2c86ced392a8 substantial improvement in serialization handling
haftmann
parents: 18702
diff changeset
   870
    thy
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   871
    |> add_pretty_syntax_const cons'' target pr
18704
2c86ced392a8 substantial improvement in serialization handling
haftmann
parents: 18702
diff changeset
   872
  end;
2c86ced392a8 substantial improvement in serialization handling
haftmann
parents: 18702
diff changeset
   873
20401
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   874
fun add_pretty_ml_string target raw_nil raw_cons raw_str mk_char mk_string target_implode thy =
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   875
  let
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   876
    val _ = get_serializer target;
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   877
    fun prep_const raw =
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   878
      let
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   879
        val c = Sign.intern_const thy raw
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   880
      in (c, Sign.the_const_type thy c) end;
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   881
    val cs' = map prep_const [raw_nil, raw_cons, raw_str];
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   882
    val tabs = mk_tabs thy NONE cs';
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   883
    fun mk_const c_ty =
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   884
      idf_of_const thy (snd tabs) c_ty;
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   885
    val [nil', cons', str'] = map mk_const cs';
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   886
    val pr = CodegenSerializer.pretty_ml_string nil' cons' mk_char mk_string target_implode;
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   887
  in
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   888
    thy
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   889
    |> add_pretty_syntax_const str' target pr
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   890
  end;
f01ae74f29f2 more concise string serialization
haftmann
parents: 20389
diff changeset
   891
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   892
18516
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
   893
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   894
(** code basis change notifications **)
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   895
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   896
val _ = Context.add_setup (CodegenTheorems.add_notify purge_defs);
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   897
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   898
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   899
18756
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   900
(** toplevel interface **)
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   901
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   902
local
19150
1457d810b408 class package and codegen refinements
haftmann
parents: 19136
diff changeset
   903
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   904
fun generate_code targets (SOME raw_consts) thy =
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   905
      let
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   906
        val consts = map (CodegenConsts.read_const_typ thy) raw_consts;
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   907
        val _ = case targets of SOME targets => (map get_serializer targets; ()) | _ => ();
18756
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   908
      in
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   909
        thy
20353
d73e49780ef2 code generator refinements
haftmann
parents: 20216
diff changeset
   910
        |> expand_module targets consts NONE (fold_map oo ensure_def_const) consts
18756
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   911
        |-> (fn cs => pair (SOME cs))
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   912
      end
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   913
  | generate_code _ NONE thy =
18756
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   914
      (NONE, thy);
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   915
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   916
fun serialize_code target seri raw_consts thy =
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   917
  let
18756
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   918
    fun serialize cs thy =
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   919
      let
18756
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   920
        val module = (#modl o CodegenData.get) thy;
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   921
        val target_data =
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   922
          thy
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   923
          |> CodegenData.get
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   924
          |> #target_data
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   925
          |> (fn data => (the oo Symtab.lookup) data target);
20216
f30b73385060 added eval_term
haftmann
parents: 20213
diff changeset
   926
        val s_class = #syntax_class target_data
f30b73385060 added eval_term
haftmann
parents: 20213
diff changeset
   927
        val s_tyco = #syntax_tyco target_data
f30b73385060 added eval_term
haftmann
parents: 20213
diff changeset
   928
        val s_const = #syntax_const target_data
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   929
      in
20216
f30b73385060 added eval_term
haftmann
parents: 20213
diff changeset
   930
        (seri (
f30b73385060 added eval_term
haftmann
parents: 20213
diff changeset
   931
          Symtab.lookup s_class,
f30b73385060 added eval_term
haftmann
parents: 20213
diff changeset
   932
          (Option.map fst oo Symtab.lookup) s_tyco,
f30b73385060 added eval_term
haftmann
parents: 20213
diff changeset
   933
          (Option.map fst oo Symtab.lookup) s_const
f30b73385060 added eval_term
haftmann
parents: 20213
diff changeset
   934
        ) (Symtab.keys s_class @ Symtab.keys s_tyco @ Symtab.keys s_const, cs) module : unit; thy)
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   935
      end;
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   936
  in
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   937
    thy
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   938
    |> generate_code (SOME [target]) raw_consts
18756
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   939
    |-> (fn cs => serialize cs)
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   940
  end;
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   941
19341
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   942
fun purge_consts raw_ts thy =
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   943
  let
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   944
    val cs = map (CodegenConsts.read_const_typ thy) raw_ts;
19341
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   945
  in fold CodegenTheorems.purge_defs cs thy end;
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   946
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   947
structure P = OuterParse
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   948
and K = OuterKeyword
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   949
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   950
in
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   951
18850
92ef83e5eaea various improvements
haftmann
parents: 18756
diff changeset
   952
val (generateK, serializeK,
19341
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
   953
     syntax_classK, syntax_tycoK, syntax_constK,
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   954
     purgeK) =
18850
92ef83e5eaea various improvements
haftmann
parents: 18756
diff changeset
   955
  ("code_generate", "code_serialize",
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   956
   "code_classapp", "code_typapp", "code_constapp",
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
   957
   "code_purge");
18335
99baddf6b0d0 various improvements
haftmann
parents: 18330
diff changeset
   958
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   959
val generateP =
18282
98431741bda3 added haskell serializer
haftmann
parents: 18247
diff changeset
   960
  OuterSyntax.command generateK "generate executable code for constants" K.thy_decl (
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   961
    (Scan.option (P.$$$ "(" |-- P.list1 P.name --| P.$$$ ")")
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   962
    >> (fn SOME ["-"] => SOME [] | ts => ts))
19816
a8c8ed1c85e0 removed 'primitive definitions' added (non)strict generation, minor fixes
haftmann
parents: 19806
diff changeset
   963
    -- Scan.repeat1 P.term
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   964
    >> (fn (targets, raw_consts) =>
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   965
          Toplevel.theory (generate_code targets (SOME raw_consts) #> snd))
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   966
  );
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   967
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   968
val serializeP =
18282
98431741bda3 added haskell serializer
haftmann
parents: 18247
diff changeset
   969
  OuterSyntax.command serializeK "serialize executable code for constants" K.thy_decl (
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   970
    P.name
19136
00ade10f611d some refinements
haftmann
parents: 19111
diff changeset
   971
    -- Scan.option (Scan.repeat1 P.term)
18756
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   972
    #-> (fn (target, raw_consts) =>
18850
92ef83e5eaea various improvements
haftmann
parents: 18756
diff changeset
   973
          P.$$$ "("
92ef83e5eaea various improvements
haftmann
parents: 18756
diff changeset
   974
          |-- get_serializer target
92ef83e5eaea various improvements
haftmann
parents: 18756
diff changeset
   975
          --| P.$$$ ")"
18756
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   976
          >> (fn seri =>
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   977
            Toplevel.theory (serialize_code target seri raw_consts)
5eb3df798405 more general serializer
haftmann
parents: 18708
diff changeset
   978
          ))
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   979
  );
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   980
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   981
val syntax_classP =
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
   982
  OuterSyntax.command syntax_classK "define code syntax for class" K.thy_decl (
18865
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   983
    Scan.repeat1 (
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   984
      P.xname
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   985
      -- Scan.repeat1 (
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   986
           P.name -- P.string
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   987
         )
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   988
    )
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   989
    >> (Toplevel.theory oo fold) (fn (raw_class, syns) =>
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   990
          fold (fn (target, p) => add_syntax_class raw_class target p) syns)
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   991
  );
31aed965135c minor cleanups
haftmann
parents: 18850
diff changeset
   992
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   993
val syntax_tycoP =
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
   994
  OuterSyntax.command syntax_tycoK "define code syntax for type constructor" K.thy_decl (
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   995
    Scan.repeat1 (
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
   996
      P.xname
18963
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
   997
      #-> (fn raw_tyco => Scan.repeat1 (
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
   998
             P.name -- parse_syntax_tyco raw_tyco
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
   999
          ))
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
  1000
    )
18963
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
  1001
    >> (Toplevel.theory oo fold o fold)
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
  1002
          (fn (target, modifier) => modifier target)
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
  1003
  );
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
  1004
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
  1005
val syntax_constP =
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
  1006
  OuterSyntax.command syntax_constK "define code syntax for constant" K.thy_decl (
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
  1007
    Scan.repeat1 (
19136
00ade10f611d some refinements
haftmann
parents: 19111
diff changeset
  1008
      P.term
18963
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
  1009
      #-> (fn raw_const => Scan.repeat1 (
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
  1010
             P.name -- parse_syntax_const raw_const
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
  1011
          ))
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18517
diff changeset
  1012
    )
19008
14c1b2f5dda4 improved code generator devarification
haftmann
parents: 18963
diff changeset
  1013
    >> (Toplevel.theory oo fold o fold)
18963
3adfc9dfb30a slight improvements in code generation
haftmann
parents: 18960
diff changeset
  1014
          (fn (target, modifier) => modifier target)
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
  1015
  );
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
  1016
19341
3414c04fbc39 added definitional code generator module: codegen_theorems.ML
haftmann
parents: 19283
diff changeset
  1017
val purgeP =
20175
0a8ca32f6e64 class package and codegen refinements
haftmann
parents: 20105
diff changeset
  1018
  OuterSyntax.command purgeK "purge all incrementally generated code" K.thy_decl
0a8ca32f6e64 class package and codegen refinements
haftmann
parents: 20105
diff changeset
  1019
    (Scan.succeed (Toplevel.theory purge_code));
18516
4424e2bce9af slightly improved serialization
haftmann
parents: 18515
diff changeset
  1020
19884
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
  1021
val _ = OuterSyntax.add_parsers [generateP, serializeP,
a7be206d8655 improvements in code generator
haftmann
parents: 19816
diff changeset
  1022
  syntax_classP, syntax_tycoP, syntax_constP,
20386
d1cbe5aa6bf2 module restructuring
haftmann
parents: 20353
diff changeset
  1023
  purgeP];
18217
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
  1024
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
  1025
end; (* local *)
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
  1026
e0b08c9534ff added codegen package
haftmann
parents: 18169
diff changeset
  1027
end; (* struct *)