src/Tools/Code/code_target.ML
author haftmann
Sat, 21 Jul 2012 20:01:16 +0200
changeset 49441 7b03314ee2ac
parent 49386 3a5a5a992519
child 49583 084cd758a8ab
permissions -rw-r--r--
also consider current working directory (cf. 3a5a5a992519)
haftmann@37744
     1
(*  Title:      Tools/Code/code_target.ML
haftmann@24219
     2
    Author:     Florian Haftmann, TU Muenchen
haftmann@24219
     3
haftmann@39136
     4
Generic infrastructure for target language data.
haftmann@24219
     5
*)
haftmann@24219
     6
haftmann@24219
     7
signature CODE_TARGET =
haftmann@24219
     8
sig
haftmann@36467
     9
  val cert_tyco: theory -> string -> string
haftmann@36467
    10
  val read_tyco: theory -> string -> string
haftmann@39291
    11
  val read_const_exprs: theory -> string list -> string list
haftmann@36467
    12
haftmann@39159
    13
  val export_code_for: theory -> Path.T option -> string -> int option -> string -> Token.T list
haftmann@39144
    14
    -> Code_Thingol.naming -> Code_Thingol.program -> string list -> unit
haftmann@39159
    15
  val produce_code_for: theory -> string -> int option -> string -> Token.T list
haftmann@39155
    16
    -> Code_Thingol.naming -> Code_Thingol.program -> string list -> string * string option list
haftmann@39159
    17
  val present_code_for: theory -> string -> int option -> string -> Token.T list
haftmann@39155
    18
    -> Code_Thingol.naming -> Code_Thingol.program -> string list * string list -> string
haftmann@39144
    19
  val check_code_for: theory -> string -> bool -> Token.T list
haftmann@39144
    20
    -> Code_Thingol.naming -> Code_Thingol.program -> string list -> unit
haftmann@39144
    21
haftmann@39144
    22
  val export_code: theory -> string list
haftmann@39159
    23
    -> (((string * string) * Path.T option) * Token.T list) list -> unit
haftmann@39155
    24
  val produce_code: theory -> string list
haftmann@39159
    25
    -> string -> int option -> string -> Token.T list -> string * string option list
haftmann@39155
    26
  val present_code: theory -> string list -> (Code_Thingol.naming -> string list)
haftmann@39159
    27
    -> string -> int option -> string -> Token.T list -> string
haftmann@39144
    28
  val check_code: theory -> string list
haftmann@39144
    29
    -> ((string * bool) * Token.T list) list -> unit
haftmann@39144
    30
haftmann@41592
    31
  val evaluator: theory -> string -> Code_Thingol.naming -> Code_Thingol.program
haftmann@41592
    32
    -> string list -> ((string * class list) list * Code_Thingol.itype) * Code_Thingol.iterm
haftmann@41592
    33
    -> string * string
haftmann@41592
    34
haftmann@28054
    35
  type serializer
haftmann@34141
    36
  type literals = Code_Printer.literals
haftmann@37822
    37
  val add_target: string * { serializer: serializer, literals: literals,
wenzelm@42811
    38
    check: { env_var: string, make_destination: Path.T -> Path.T, make_command: string -> string } }
wenzelm@42811
    39
    -> theory -> theory
haftmann@28663
    40
  val extend_target: string *
haftmann@28663
    41
      (string * (Code_Thingol.naming -> Code_Thingol.program -> Code_Thingol.program))
haftmann@28054
    42
    -> theory -> theory
haftmann@28054
    43
  val assert_target: theory -> string -> string
haftmann@39144
    44
  val the_literals: theory -> string -> literals
haftmann@28054
    45
  type serialization
wenzelm@36969
    46
  val parse_args: 'a parser -> Token.T list -> 'a
haftmann@39142
    47
  val serialization: (int -> Path.T option -> 'a -> unit)
haftmann@39336
    48
    -> (string list -> int -> 'a -> string * (string -> string option))
haftmann@39151
    49
    -> 'a -> serialization
haftmann@39144
    50
  val set_default_code_width: int -> theory -> theory
haftmann@39143
    51
haftmann@28054
    52
  val allow_abort: string -> theory -> theory
haftmann@34141
    53
  type tyco_syntax = Code_Printer.tyco_syntax
haftmann@37849
    54
  type const_syntax = Code_Printer.const_syntax
haftmann@39149
    55
  val add_class_syntax: string -> class -> string option -> theory -> theory
haftmann@39149
    56
  val add_instance_syntax: string -> class * string -> unit option -> theory -> theory
haftmann@39149
    57
  val add_tyco_syntax: string -> string -> tyco_syntax option -> theory -> theory
haftmann@39149
    58
  val add_const_syntax: string -> string -> const_syntax option -> theory -> theory
haftmann@28054
    59
  val add_reserved: string -> string -> theory -> theory
haftmann@33968
    60
  val add_include: string -> string * (string * string list) option -> theory -> theory
haftmann@39870
    61
haftmann@39983
    62
  val codegen_tool: string (*theory name*) -> string (*export_code expr*) -> unit
wenzelm@44450
    63
wenzelm@44450
    64
  val setup: theory -> theory
haftmann@24219
    65
end;
haftmann@24219
    66
haftmann@28054
    67
structure Code_Target : CODE_TARGET =
haftmann@24219
    68
struct
haftmann@24219
    69
haftmann@28054
    70
open Basic_Code_Thingol;
haftmann@34141
    71
haftmann@34141
    72
type literals = Code_Printer.literals;
haftmann@34141
    73
type tyco_syntax = Code_Printer.tyco_syntax;
haftmann@37849
    74
type const_syntax = Code_Printer.const_syntax;
haftmann@34141
    75
haftmann@24219
    76
haftmann@39149
    77
(** abstract nonsense **)
haftmann@24219
    78
haftmann@39155
    79
datatype destination = Export of Path.T option | Produce | Present of string list;
haftmann@39336
    80
type serialization = int -> destination -> (string * (string -> string option)) option;
haftmann@27014
    81
haftmann@39885
    82
fun serialization output _ content width (Export some_path) =
haftmann@39885
    83
      (output width some_path content; NONE)
haftmann@39885
    84
  | serialization _ string content width Produce =
haftmann@39885
    85
      string [] width content |> SOME
haftmann@39885
    86
  | serialization _ string content width (Present stmt_names) =
haftmann@39885
    87
     string stmt_names width content
haftmann@39885
    88
     |> apfst (Pretty.output (SOME width) o Pretty.str)
haftmann@39885
    89
     |> SOME;
haftmann@24219
    90
haftmann@39885
    91
fun export some_path f = (f (Export some_path); ());
haftmann@39885
    92
fun produce f = the (f Produce);
haftmann@39885
    93
fun present stmt_names f = fst (the (f (Present stmt_names)));
haftmann@39143
    94
haftmann@24219
    95
haftmann@28054
    96
(** theory data **)
haftmann@27000
    97
haftmann@39149
    98
datatype symbol_syntax_data = Symbol_Syntax_Data of {
haftmann@28690
    99
  class: string Symtab.table,
haftmann@30636
   100
  instance: unit Symreltab.table,
haftmann@34141
   101
  tyco: Code_Printer.tyco_syntax Symtab.table,
haftmann@37849
   102
  const: Code_Printer.const_syntax Symtab.table
haftmann@28054
   103
};
haftmann@27000
   104
haftmann@39149
   105
fun make_symbol_syntax_data ((class, instance), (tyco, const)) =
haftmann@39149
   106
  Symbol_Syntax_Data { class = class, instance = instance, tyco = tyco, const = const };
haftmann@39149
   107
fun map_symbol_syntax_data f (Symbol_Syntax_Data { class, instance, tyco, const }) =
haftmann@39149
   108
  make_symbol_syntax_data (f ((class, instance), (tyco, const)));
haftmann@39149
   109
fun merge_symbol_syntax_data
haftmann@39149
   110
  (Symbol_Syntax_Data { class = class1, instance = instance1, tyco = tyco1, const = const1 },
haftmann@39149
   111
    Symbol_Syntax_Data { class = class2, instance = instance2, tyco = tyco2, const = const2 }) =
haftmann@39149
   112
  make_symbol_syntax_data (
haftmann@28054
   113
    (Symtab.join (K snd) (class1, class2),
haftmann@30636
   114
       Symreltab.join (K snd) (instance1, instance2)),
haftmann@28054
   115
    (Symtab.join (K snd) (tyco1, tyco2),
haftmann@28054
   116
       Symtab.join (K snd) (const1, const2))
haftmann@28054
   117
  );
haftmann@27103
   118
haftmann@39381
   119
type serializer = Token.T list
haftmann@39381
   120
  -> {
haftmann@39152
   121
    labelled_name: string -> string,
haftmann@39152
   122
    reserved_syms: string list,
haftmann@39152
   123
    includes: (string * Pretty.T) list,
haftmann@39152
   124
    module_alias: string -> string option,
haftmann@39152
   125
    class_syntax: string -> string option,
haftmann@39152
   126
    tyco_syntax: string -> Code_Printer.tyco_syntax option,
haftmann@41590
   127
    const_syntax: string -> Code_Printer.activated_const_syntax option }
haftmann@41590
   128
  -> Code_Thingol.program
haftmann@28054
   129
  -> serialization;
haftmann@27103
   130
haftmann@39135
   131
datatype description = Fundamental of { serializer: serializer,
haftmann@39136
   132
      literals: literals,
haftmann@37822
   133
      check: { env_var: string, make_destination: Path.T -> Path.T,
wenzelm@42811
   134
        make_command: string -> string } }
haftmann@39135
   135
  | Extension of string *
haftmann@39135
   136
      (Code_Thingol.naming -> Code_Thingol.program -> Code_Thingol.program);
haftmann@27103
   137
haftmann@28054
   138
datatype target = Target of {
haftmann@28054
   139
  serial: serial,
haftmann@37821
   140
  description: description,
haftmann@28054
   141
  reserved: string list,
haftmann@28926
   142
  includes: (Pretty.T * string list) Symtab.table,
haftmann@39151
   143
  module_alias: string Symtab.table,
haftmann@39151
   144
  symbol_syntax: symbol_syntax_data
haftmann@28054
   145
};
haftmann@27103
   146
haftmann@39151
   147
fun make_target ((serial, description), ((reserved, includes), (module_alias, symbol_syntax))) =
wenzelm@44450
   148
  Target { serial = serial, description = description, reserved = reserved,
haftmann@39151
   149
    includes = includes, module_alias = module_alias, symbol_syntax = symbol_syntax };
haftmann@39151
   150
fun map_target f ( Target { serial, description, reserved, includes, module_alias, symbol_syntax } ) =
haftmann@39151
   151
  make_target (f ((serial, description), ((reserved, includes), (module_alias, symbol_syntax))));
haftmann@37821
   152
fun merge_target strict target (Target { serial = serial1, description = description,
haftmann@28054
   153
  reserved = reserved1, includes = includes1,
haftmann@39151
   154
  module_alias = module_alias1, symbol_syntax = symbol_syntax1 },
haftmann@37821
   155
    Target { serial = serial2, description = _,
haftmann@28054
   156
      reserved = reserved2, includes = includes2,
haftmann@39151
   157
      module_alias = module_alias2, symbol_syntax = symbol_syntax2 }) =
haftmann@28054
   158
  if serial1 = serial2 orelse not strict then
haftmann@37821
   159
    make_target ((serial1, description),
haftmann@38209
   160
      ((merge (op =) (reserved1, reserved2), Symtab.join (K snd) (includes1, includes2)),
haftmann@39151
   161
        (Symtab.join (K snd) (module_alias1, module_alias2),
haftmann@39151
   162
          merge_symbol_syntax_data (symbol_syntax1, symbol_syntax2))
haftmann@28054
   163
    ))
haftmann@28054
   164
  else
haftmann@37821
   165
    error ("Incompatible targets: " ^ quote target);
haftmann@27436
   166
haftmann@37821
   167
fun the_description (Target { description, ... }) = description;
haftmann@28054
   168
fun the_reserved (Target { reserved, ... }) = reserved;
haftmann@28054
   169
fun the_includes (Target { includes, ... }) = includes;
haftmann@28054
   170
fun the_module_alias (Target { module_alias , ... }) = module_alias;
haftmann@39151
   171
fun the_symbol_syntax (Target { symbol_syntax = Symbol_Syntax_Data x, ... }) = x;
haftmann@27436
   172
haftmann@34243
   173
structure Targets = Theory_Data
haftmann@34071
   174
(
haftmann@34071
   175
  type T = (target Symtab.table * string list) * int;
haftmann@34071
   176
  val empty = ((Symtab.empty, []), 80);
haftmann@34071
   177
  val extend = I;
haftmann@34071
   178
  fun merge (((target1, exc1), width1), ((target2, exc2), width2)) : T =
haftmann@34071
   179
    ((Symtab.join (merge_target true) (target1, target2),
haftmann@34071
   180
      Library.merge (op =) (exc1, exc2)), Int.max (width1, width2));
haftmann@34071
   181
);
haftmann@28054
   182
haftmann@34243
   183
val abort_allowed = snd o fst o Targets.get;
haftmann@34071
   184
haftmann@34243
   185
fun assert_target thy target = if Symtab.defined ((fst o fst) (Targets.get thy)) target
haftmann@33968
   186
  then target
haftmann@33968
   187
  else error ("Unknown code target language: " ^ quote target);
haftmann@28054
   188
haftmann@28054
   189
fun put_target (target, seri) thy =
haftmann@27437
   190
  let
haftmann@34243
   191
    val lookup_target = Symtab.lookup ((fst o fst) (Targets.get thy));
haftmann@28054
   192
    val _ = case seri
haftmann@37821
   193
     of Extension (super, _) => if is_some (lookup_target super) then ()
haftmann@28054
   194
          else error ("Unknown code target language: " ^ quote super)
haftmann@28054
   195
      | _ => ();
haftmann@37821
   196
    val overwriting = case (Option.map the_description o lookup_target) target
haftmann@28663
   197
     of NONE => false
haftmann@37821
   198
      | SOME (Extension _) => true
haftmann@37821
   199
      | SOME (Fundamental _) => (case seri
haftmann@37821
   200
         of Extension _ => error ("Will not overwrite existing target " ^ quote target)
haftmann@28663
   201
          | _ => true);
haftmann@28663
   202
    val _ = if overwriting
haftmann@28054
   203
      then warning ("Overwriting existing target " ^ quote target)
wenzelm@44450
   204
      else ();
haftmann@27103
   205
  in
haftmann@28054
   206
    thy
haftmann@34243
   207
    |> (Targets.map o apfst o apfst o Symtab.update)
haftmann@31599
   208
          (target, make_target ((serial (), seri), (([], Symtab.empty),
haftmann@39151
   209
            (Symtab.empty, make_symbol_syntax_data ((Symtab.empty, Symreltab.empty),
haftmann@39151
   210
              (Symtab.empty, Symtab.empty))))))
haftmann@27103
   211
  end;
haftmann@27000
   212
haftmann@37821
   213
fun add_target (target, seri) = put_target (target, Fundamental seri);
haftmann@28054
   214
fun extend_target (target, (super, modify)) =
haftmann@37821
   215
  put_target (target, Extension (super, modify));
haftmann@27000
   216
haftmann@28054
   217
fun map_target_data target f thy =
haftmann@27304
   218
  let
haftmann@28054
   219
    val _ = assert_target thy target;
haftmann@27000
   220
  in
haftmann@28054
   221
    thy
haftmann@34243
   222
    |> (Targets.map o apfst o apfst o Symtab.map_entry target o map_target) f
haftmann@27000
   223
  end;
haftmann@27000
   224
haftmann@28054
   225
fun map_reserved target =
haftmann@28054
   226
  map_target_data target o apsnd o apfst o apfst;
haftmann@28054
   227
fun map_includes target =
haftmann@28054
   228
  map_target_data target o apsnd o apfst o apsnd;
haftmann@28054
   229
fun map_module_alias target =
haftmann@39151
   230
  map_target_data target o apsnd o apsnd o apfst;
haftmann@39151
   231
fun map_symbol_syntax target =
haftmann@39151
   232
  map_target_data target o apsnd o apsnd o apsnd o map_symbol_syntax_data;
haftmann@27000
   233
haftmann@34243
   234
fun set_default_code_width k = (Targets.map o apsnd) (K k);
haftmann@34071
   235
haftmann@27000
   236
haftmann@34021
   237
(** serializer usage **)
haftmann@34021
   238
haftmann@34021
   239
(* montage *)
haftmann@34021
   240
haftmann@37822
   241
fun the_fundamental thy =
haftmann@34021
   242
  let
haftmann@34243
   243
    val ((targets, _), _) = Targets.get thy;
haftmann@37822
   244
    fun fundamental target = case Symtab.lookup targets target
haftmann@37821
   245
     of SOME data => (case the_description data
haftmann@37822
   246
         of Fundamental data => data
haftmann@37822
   247
          | Extension (super, _) => fundamental super)
haftmann@34021
   248
      | NONE => error ("Unknown code target language: " ^ quote target);
haftmann@37822
   249
  in fundamental end;
haftmann@37822
   250
haftmann@37822
   251
fun the_literals thy = #literals o the_fundamental thy;
haftmann@34021
   252
haftmann@40059
   253
fun collapse_hierarchy thy =
haftmann@39153
   254
  let
haftmann@40059
   255
    val ((targets, _), _) = Targets.get thy;
wenzelm@44450
   256
    fun collapse target =
haftmann@39153
   257
      let
haftmann@39153
   258
        val data = case Symtab.lookup targets target
haftmann@39153
   259
         of SOME data => data
haftmann@39153
   260
          | NONE => error ("Unknown code target language: " ^ quote target);
haftmann@39153
   261
      in case the_description data
haftmann@39724
   262
       of Fundamental _ => (K I, data)
haftmann@39153
   263
        | Extension (super, modify) => let
haftmann@40059
   264
            val (modify', data') = collapse super
haftmann@39724
   265
          in (fn naming => modify' naming #> modify naming, merge_target false target (data', data)) end
haftmann@39153
   266
      end;
haftmann@40059
   267
  in collapse end;
haftmann@40059
   268
haftmann@40059
   269
local
haftmann@40059
   270
haftmann@40059
   271
fun activate_target thy target =
haftmann@40059
   272
  let
haftmann@48447
   273
    val ((_, abortable), default_width) = Targets.get thy;
haftmann@40059
   274
    val (modify, data) = collapse_hierarchy thy target;
haftmann@39724
   275
  in (default_width, abortable, data, modify) end;
haftmann@39153
   276
haftmann@34021
   277
fun activate_syntax lookup_name src_tab = Symtab.empty
haftmann@34021
   278
  |> fold_map (fn thing_identifier => fn tab => case lookup_name thing_identifier
haftmann@34021
   279
       of SOME name => (SOME name,
haftmann@34021
   280
            Symtab.update_new (name, the (Symtab.lookup src_tab thing_identifier)) tab)
haftmann@34021
   281
        | NONE => (NONE, tab)) (Symtab.keys src_tab)
haftmann@34021
   282
  |>> map_filter I;
haftmann@34021
   283
haftmann@34021
   284
fun activate_const_syntax thy literals src_tab naming = (Symtab.empty, naming)
haftmann@37854
   285
  |> fold_map (fn c => fn (tab, naming) =>
haftmann@37854
   286
      case Code_Thingol.lookup_const naming c
haftmann@34021
   287
       of SOME name => let
haftmann@34021
   288
              val (syn, naming') = Code_Printer.activate_const_syntax thy
haftmann@37854
   289
                literals c (the (Symtab.lookup src_tab c)) naming
haftmann@34021
   290
            in (SOME name, (Symtab.update_new (name, syn) tab, naming')) end
haftmann@34021
   291
        | NONE => (NONE, (tab, naming))) (Symtab.keys src_tab)
haftmann@34021
   292
  |>> map_filter I;
haftmann@34021
   293
haftmann@39153
   294
fun activate_symbol_syntax thy literals naming
haftmann@39153
   295
    class_syntax instance_syntax tyco_syntax const_syntax =
haftmann@34021
   296
  let
haftmann@39153
   297
    val (names_class, class_syntax') =
haftmann@39153
   298
      activate_syntax (Code_Thingol.lookup_class naming) class_syntax;
haftmann@34021
   299
    val names_inst = map_filter (Code_Thingol.lookup_instance naming)
haftmann@39153
   300
      (Symreltab.keys instance_syntax);
haftmann@39153
   301
    val (names_tyco, tyco_syntax') =
haftmann@39153
   302
      activate_syntax (Code_Thingol.lookup_tyco naming) tyco_syntax;
haftmann@39153
   303
    val (names_const, (const_syntax', _)) =
haftmann@39153
   304
      activate_const_syntax thy literals const_syntax naming;
haftmann@39153
   305
  in
haftmann@39153
   306
    (names_class @ names_inst @ names_tyco @ names_const,
haftmann@39153
   307
      (class_syntax', tyco_syntax', const_syntax'))
haftmann@39153
   308
  end;
haftmann@39153
   309
haftmann@39153
   310
fun project_program thy abortable names_hidden names1 program2 =
haftmann@39153
   311
  let
wenzelm@43232
   312
    val ctxt = Proof_Context.init_global thy;
haftmann@34021
   313
    val names2 = subtract (op =) names_hidden names1;
wenzelm@47485
   314
    val program3 = Graph.restrict (not o member (op =) names_hidden) program2;
haftmann@39162
   315
    val names4 = Graph.all_succs program3 names2;
haftmann@34021
   316
    val empty_funs = filter_out (member (op =) abortable)
haftmann@34021
   317
      (Code_Thingol.empty_funs program3);
wenzelm@43230
   318
    val _ =
wenzelm@43230
   319
      if null empty_funs then ()
wenzelm@43230
   320
      else error ("No code equations for " ^
wenzelm@43232
   321
        commas (map (Proof_Context.extern_const ctxt) empty_funs));
wenzelm@47485
   322
    val program4 = Graph.restrict (member (op =) names4) program3;
haftmann@39162
   323
  in (names4, program4) end;
haftmann@39153
   324
haftmann@41590
   325
fun prepare_serializer thy abortable serializer literals reserved all_includes
haftmann@39153
   326
    module_alias proto_class_syntax proto_instance_syntax proto_tyco_syntax proto_const_syntax
haftmann@39292
   327
    module_name args naming proto_program names =
haftmann@39153
   328
  let
haftmann@39153
   329
    val (names_hidden, (class_syntax, tyco_syntax, const_syntax)) =
haftmann@39153
   330
      activate_symbol_syntax thy literals naming
haftmann@39153
   331
        proto_class_syntax proto_instance_syntax proto_tyco_syntax proto_const_syntax;
haftmann@39153
   332
    val (names_all, program) = project_program thy abortable names_hidden names proto_program;
haftmann@39724
   333
    fun select_include (name, (content, cs)) =
haftmann@39724
   334
      if null cs orelse exists (fn c => case Code_Thingol.lookup_const naming c
haftmann@39724
   335
       of SOME name => member (op =) names_all name
haftmann@39724
   336
        | NONE => false) cs
haftmann@39724
   337
      then SOME (name, content) else NONE;
haftmann@39724
   338
    val includes = map_filter select_include (Symtab.dest all_includes);
haftmann@34021
   339
  in
haftmann@41590
   340
    (serializer args {
haftmann@39153
   341
      labelled_name = Code_Thingol.labelled_name thy proto_program,
haftmann@39152
   342
      reserved_syms = reserved,
haftmann@39152
   343
      includes = includes,
haftmann@39159
   344
      module_alias = if module_name = "" then Symtab.lookup module_alias else K (SOME module_name),
haftmann@39153
   345
      class_syntax = Symtab.lookup class_syntax,
haftmann@39153
   346
      tyco_syntax = Symtab.lookup tyco_syntax,
haftmann@41590
   347
      const_syntax = Symtab.lookup const_syntax },
haftmann@41590
   348
      program)
haftmann@34021
   349
  end;
haftmann@34021
   350
haftmann@41590
   351
fun mount_serializer thy target some_width module_name args naming program names =
haftmann@34021
   352
  let
haftmann@39724
   353
    val (default_width, abortable, data, modify) = activate_target thy target;
haftmann@39147
   354
    val serializer = case the_description data
haftmann@39153
   355
     of Fundamental seri => #serializer seri;
haftmann@34021
   356
    val reserved = the_reserved data;
wenzelm@44450
   357
    val module_alias = the_module_alias data
haftmann@39151
   358
    val { class, instance, tyco, const } = the_symbol_syntax data;
haftmann@34021
   359
    val literals = the_literals thy target;
haftmann@41590
   360
    val (prepared_serializer, prepared_program) = prepare_serializer thy
haftmann@41590
   361
      abortable serializer literals reserved (the_includes data) module_alias
haftmann@41590
   362
        class instance tyco const module_name args
haftmann@41590
   363
          naming (modify naming program) names
haftmann@34071
   364
    val width = the_default default_width some_width;
haftmann@41592
   365
  in (fn program => prepared_serializer program width, prepared_program) end;
haftmann@41592
   366
haftmann@41592
   367
fun invoke_serializer thy target some_width module_name args naming program names =
haftmann@41592
   368
  let
haftmann@41592
   369
    val (mounted_serializer, prepared_program) = mount_serializer thy
haftmann@41592
   370
      target some_width module_name args naming program names;
haftmann@41592
   371
  in mounted_serializer prepared_program end;
haftmann@34021
   372
haftmann@39159
   373
fun assert_module_name "" = error ("Empty module name not allowed.")
haftmann@39159
   374
  | assert_module_name module_name = module_name;
haftmann@39159
   375
haftmann@49441
   376
fun using_master_directory thy =
haftmann@49441
   377
  Option.map (Path.append (File.pwd ()) o Path.append (Thy_Load.master_directory thy));
haftmann@49386
   378
haftmann@34021
   379
in
haftmann@34021
   380
haftmann@39724
   381
fun export_code_for thy some_path target some_width module_name args =
haftmann@49386
   382
  export (using_master_directory thy some_path)
haftmann@49386
   383
  ooo invoke_serializer thy target some_width module_name args;
haftmann@39144
   384
haftmann@39724
   385
fun produce_code_for thy target some_width module_name args =
haftmann@39336
   386
  let
haftmann@41592
   387
    val serializer = invoke_serializer thy target some_width (assert_module_name module_name) args;
haftmann@39724
   388
  in fn naming => fn program => fn names =>
haftmann@39885
   389
    produce (serializer naming program names) |> apsnd (fn deresolve => map deresolve names)
haftmann@39724
   390
  end;
haftmann@39155
   391
haftmann@39724
   392
fun present_code_for thy target some_width module_name args =
haftmann@39724
   393
  let
haftmann@41592
   394
    val serializer = invoke_serializer thy target some_width (assert_module_name module_name) args;
haftmann@39724
   395
  in fn naming => fn program => fn (names, selects) =>
haftmann@39885
   396
    present selects (serializer naming program names)
haftmann@39724
   397
  end;
haftmann@39144
   398
haftmann@39144
   399
fun check_code_for thy target strict args naming program names_cs =
haftmann@37824
   400
  let
bulwahn@45615
   401
    val module_name = "Generated_Code";
haftmann@37824
   402
    val { env_var, make_destination, make_command } =
haftmann@37824
   403
      (#check o the_fundamental thy) target;
wenzelm@42810
   404
    fun ext_check p =
wenzelm@44450
   405
      let
haftmann@37824
   406
        val destination = make_destination p;
haftmann@41592
   407
        val _ = export (SOME destination) (invoke_serializer thy target (SOME 80)
haftmann@39885
   408
          module_name args naming program names_cs);
wenzelm@42811
   409
        val cmd = make_command module_name;
wenzelm@44721
   410
      in
wenzelm@44721
   411
        if Isabelle_System.bash ("cd " ^ File.shell_path p ^ " && " ^ cmd ^ " 2>&1") <> 0
haftmann@37824
   412
        then error ("Code check failed for " ^ target ^ ": " ^ cmd)
haftmann@37824
   413
        else ()
haftmann@37824
   414
      end;
wenzelm@44721
   415
  in
wenzelm@44721
   416
    if getenv env_var = ""
haftmann@37825
   417
    then if strict
haftmann@37825
   418
      then error (env_var ^ " not set; cannot check code for " ^ target)
haftmann@37825
   419
      else warning (env_var ^ " not set; skipped checking code for " ^ target)
wenzelm@42810
   420
    else Isabelle_System.with_tmp_dir "Code_Test" ext_check
haftmann@37824
   421
  end;
haftmann@37824
   422
haftmann@41612
   423
fun evaluation mounted_serializer prepared_program consts ((vs, ty), t) =
haftmann@41592
   424
  let
haftmann@41592
   425
    val _ = if Code_Thingol.contains_dict_var t then
haftmann@41592
   426
      error "Term to be evaluated contains free dictionaries" else ();
wenzelm@44206
   427
    val v' = singleton (Name.variant_list (map fst vs)) "a";
haftmann@41592
   428
    val vs' = (v', []) :: vs;
haftmann@41592
   429
    val ty' = Code_Thingol.fun_tyco `%% [ITyVar v', ty];
haftmann@41592
   430
    val value_name = "Value.value.value"
haftmann@41592
   431
    val program = prepared_program
haftmann@41592
   432
      |> Graph.new_node (value_name,
haftmann@41592
   433
          Code_Thingol.Fun (Term.dummy_patternN, (((vs', ty'), [(([IVar NONE], t), (NONE, true))]), NONE)))
haftmann@41612
   434
      |> fold (curry (perhaps o try o Graph.add_edge) value_name) consts;
haftmann@41592
   435
    val (program_code, deresolve) = produce (mounted_serializer program);
haftmann@41592
   436
    val value_name' = the (deresolve value_name);
haftmann@41592
   437
  in (program_code, value_name') end;
haftmann@41592
   438
haftmann@41612
   439
fun evaluator thy target naming program consts =
haftmann@41592
   440
  let
haftmann@41592
   441
    val (mounted_serializer, prepared_program) = mount_serializer thy
bulwahn@45615
   442
      target NONE "Generated_Code" [] naming program consts;
haftmann@41612
   443
  in evaluation mounted_serializer prepared_program consts end;
haftmann@41592
   444
haftmann@34021
   445
end; (* local *)
haftmann@34021
   446
haftmann@34021
   447
haftmann@34021
   448
(* code generation *)
haftmann@34021
   449
haftmann@34021
   450
fun transitivly_non_empty_funs thy naming program =
haftmann@34021
   451
  let
haftmann@34021
   452
    val cs = subtract (op =) (abort_allowed thy) (Code_Thingol.empty_funs program);
haftmann@34021
   453
    val names = map_filter (Code_Thingol.lookup_const naming) cs;
haftmann@34021
   454
  in subtract (op =) (Graph.all_preds program names) (Graph.keys program) end;
haftmann@34021
   455
haftmann@34021
   456
fun read_const_exprs thy cs =
haftmann@34021
   457
  let
haftmann@34021
   458
    val (cs1, cs2) = Code_Thingol.read_const_exprs thy cs;
haftmann@36271
   459
    val (names2, (naming, program)) = Code_Thingol.consts_program thy true cs2;
haftmann@36271
   460
    val names3 = transitivly_non_empty_funs thy naming program;
haftmann@36271
   461
    val cs3 = map_filter (fn (c, name) =>
haftmann@36271
   462
      if member (op =) names3 name then SOME c else NONE) (cs2 ~~ names2);
haftmann@36271
   463
  in union (op =) cs3 cs1 end;
haftmann@34021
   464
haftmann@39144
   465
fun prep_destination "" = NONE
haftmann@39144
   466
  | prep_destination "-" = NONE
haftmann@39144
   467
  | prep_destination s = SOME (Path.explode s);
haftmann@39144
   468
haftmann@34021
   469
fun export_code thy cs seris =
haftmann@34021
   470
  let
haftmann@37824
   471
    val (names_cs, (naming, program)) = Code_Thingol.consts_program thy false cs;
haftmann@39144
   472
    val _ = map (fn (((target, module_name), some_path), args) =>
haftmann@39144
   473
      export_code_for thy some_path target NONE module_name args naming program names_cs) seris;
haftmann@34021
   474
  in () end;
haftmann@34021
   475
haftmann@39144
   476
fun export_code_cmd raw_cs seris thy = export_code thy (read_const_exprs thy raw_cs)
haftmann@39144
   477
  ((map o apfst o apsnd) prep_destination seris);
haftmann@39144
   478
haftmann@39155
   479
fun produce_code thy cs target some_width some_module_name args =
haftmann@39144
   480
  let
haftmann@39144
   481
    val (names_cs, (naming, program)) = Code_Thingol.consts_program thy false cs;
haftmann@39155
   482
  in produce_code_for thy target some_width some_module_name args naming program names_cs end;
haftmann@39155
   483
haftmann@39155
   484
fun present_code thy cs names_stmt target some_width some_module_name args =
haftmann@39155
   485
  let
haftmann@39155
   486
    val (names_cs, (naming, program)) = Code_Thingol.consts_program thy false cs;
haftmann@39155
   487
  in present_code_for thy target some_width some_module_name args naming program (names_cs, names_stmt naming) end;
haftmann@34021
   488
haftmann@37824
   489
fun check_code thy cs seris =
haftmann@37824
   490
  let
haftmann@37824
   491
    val (names_cs, (naming, program)) = Code_Thingol.consts_program thy false cs;
haftmann@39144
   492
    val _ = map (fn ((target, strict), args) =>
haftmann@39144
   493
      check_code_for thy target strict args naming program names_cs) seris;
haftmann@37824
   494
  in () end;
haftmann@37824
   495
haftmann@37824
   496
fun check_code_cmd raw_cs seris thy = check_code thy (read_const_exprs thy raw_cs) seris;
haftmann@37824
   497
haftmann@39720
   498
local
haftmann@39720
   499
haftmann@39720
   500
val parse_const_terms = Scan.repeat1 Args.term
haftmann@39720
   501
  >> (fn ts => fn thy => map (Code.check_const thy) ts);
haftmann@39720
   502
haftmann@39720
   503
fun parse_names category parse internalize lookup =
haftmann@39720
   504
  Scan.lift (Args.parens (Args.$$$ category)) |-- Scan.repeat1 parse
haftmann@39720
   505
  >> (fn xs => fn thy => fn naming => map_filter (lookup naming o internalize thy) xs);
wenzelm@44450
   506
haftmann@39720
   507
val parse_consts = parse_names "consts" Args.term
haftmann@39720
   508
  Code.check_const Code_Thingol.lookup_const ;
haftmann@39720
   509
haftmann@39720
   510
val parse_types = parse_names "types" (Scan.lift Args.name)
haftmann@39720
   511
  Sign.intern_type Code_Thingol.lookup_tyco;
haftmann@39720
   512
haftmann@39720
   513
val parse_classes = parse_names "classes" (Scan.lift Args.name)
haftmann@39720
   514
  Sign.intern_class Code_Thingol.lookup_class;
haftmann@39720
   515
haftmann@39720
   516
val parse_instances = parse_names "instances" (Scan.lift (Args.name --| Args.$$$ "::" -- Args.name))
haftmann@39720
   517
  (fn thy => fn (raw_tyco, raw_class) => (Sign.intern_class thy raw_class, Sign.intern_type thy raw_tyco))
haftmann@39720
   518
    Code_Thingol.lookup_instance;
haftmann@39720
   519
haftmann@39720
   520
in
haftmann@39720
   521
wenzelm@44450
   522
val antiq_setup =
wenzelm@44450
   523
  Thy_Output.antiquotation @{binding code_stmts}
wenzelm@44450
   524
    (parse_const_terms --
wenzelm@44450
   525
      Scan.repeat (parse_consts || parse_types || parse_classes || parse_instances)
wenzelm@44450
   526
      -- Scan.lift (Args.parens (Args.name -- Scan.option Parse.int)))
wenzelm@44450
   527
    (fn {context = ctxt, ...} => fn ((mk_cs, mk_stmtss), (target, some_width)) =>
wenzelm@44450
   528
      let val thy = Proof_Context.theory_of ctxt in
wenzelm@44450
   529
        present_code thy (mk_cs thy)
wenzelm@44450
   530
          (fn naming => maps (fn f => f thy naming) mk_stmtss)
wenzelm@44450
   531
          target some_width "Example" []
wenzelm@44450
   532
      end);
haftmann@39720
   533
haftmann@39720
   534
end;
haftmann@39720
   535
haftmann@34021
   536
haftmann@28054
   537
(** serializer configuration **)
haftmann@28054
   538
haftmann@27000
   539
(* data access *)
haftmann@24219
   540
haftmann@24992
   541
fun cert_class thy class =
haftmann@24992
   542
  let
haftmann@24992
   543
    val _ = AxClass.get_info thy class;
haftmann@24992
   544
  in class end;
haftmann@24992
   545
haftmann@27103
   546
fun read_class thy = cert_class thy o Sign.intern_class thy;
haftmann@24992
   547
haftmann@24992
   548
fun cert_tyco thy tyco =
haftmann@24992
   549
  let
haftmann@24992
   550
    val _ = if Sign.declared_tyname thy tyco then ()
haftmann@24992
   551
      else error ("No such type constructor: " ^ quote tyco);
haftmann@24992
   552
  in tyco end;
haftmann@24992
   553
haftmann@27103
   554
fun read_tyco thy = cert_tyco thy o Sign.intern_type thy;
haftmann@24219
   555
haftmann@34071
   556
fun cert_inst thy (class, tyco) =
haftmann@34071
   557
  (cert_class thy class, cert_tyco thy tyco);
haftmann@34071
   558
haftmann@34071
   559
fun read_inst thy (raw_tyco, raw_class) =
haftmann@34071
   560
  (read_class thy raw_class, read_tyco thy raw_tyco);
haftmann@34071
   561
haftmann@37844
   562
fun gen_add_syntax (mapp, upd, del) prep_x prep_syn target raw_x some_raw_syn thy =
haftmann@24219
   563
  let
haftmann@37840
   564
    val x = prep_x thy raw_x;
haftmann@37844
   565
    val change = case some_raw_syn
haftmann@37844
   566
     of SOME raw_syn => upd (x, prep_syn thy x raw_syn)
haftmann@37844
   567
      | NONE => del x;
haftmann@39151
   568
  in (map_symbol_syntax target o mapp) change thy end;
haftmann@24219
   569
haftmann@39149
   570
fun gen_add_class_syntax prep_class =
haftmann@37844
   571
  gen_add_syntax (apfst o apfst, Symtab.update, Symtab.delete_safe) prep_class ((K o K) I);
haftmann@24219
   572
haftmann@39149
   573
fun gen_add_instance_syntax prep_inst =
haftmann@37844
   574
  gen_add_syntax (apfst o apsnd, Symreltab.update, Symreltab.delete_safe) prep_inst ((K o K) I);
haftmann@34071
   575
haftmann@39149
   576
fun gen_add_tyco_syntax prep_tyco =
haftmann@37844
   577
  gen_add_syntax (apsnd o apfst, Symtab.update, Symtab.delete_safe) prep_tyco
haftmann@37844
   578
    (fn thy => fn tyco => fn syn => if fst syn <> Sign.arity_number thy tyco
haftmann@24219
   579
      then error ("Number of arguments mismatch in syntax for type constructor " ^ quote tyco)
haftmann@37844
   580
      else syn);
haftmann@24219
   581
haftmann@39149
   582
fun gen_add_const_syntax prep_const =
haftmann@37844
   583
  gen_add_syntax (apsnd o apsnd, Symtab.update, Symtab.delete_safe) prep_const
haftmann@37854
   584
    (fn thy => fn c => fn syn =>
haftmann@37854
   585
      if Code_Printer.requires_args syn > Code.args_number thy c
haftmann@24423
   586
      then error ("Too many arguments in syntax for constant " ^ quote c)
haftmann@37854
   587
      else syn);
haftmann@24219
   588
haftmann@40059
   589
fun add_reserved target sym thy =
haftmann@24219
   590
  let
haftmann@40059
   591
    val (_, data) = collapse_hierarchy thy target;
haftmann@40059
   592
    val _ = if member (op =) (the_reserved data) sym
haftmann@24219
   593
      then error ("Reserved symbol " ^ quote sym ^ " already declared")
haftmann@40059
   594
      else ();
haftmann@40059
   595
  in
haftmann@40059
   596
    thy
haftmann@40059
   597
    |> map_reserved target (insert (op =) sym)
haftmann@40059
   598
  end;
haftmann@24992
   599
haftmann@28926
   600
fun gen_add_include read_const target args thy =
haftmann@24992
   601
  let
haftmann@28926
   602
    fun add (name, SOME (content, raw_cs)) incls =
haftmann@24992
   603
          let
haftmann@24992
   604
            val _ = if Symtab.defined incls name
haftmann@24992
   605
              then warning ("Overwriting existing include " ^ name)
haftmann@24992
   606
              else ();
haftmann@28926
   607
            val cs = map (read_const thy) raw_cs;
haftmann@34141
   608
          in Symtab.update (name, (Code_Printer.str content, cs)) incls end
haftmann@28926
   609
      | add (name, NONE) incls = Symtab.delete name incls;
haftmann@28926
   610
  in map_includes target (add args) thy end;
haftmann@28926
   611
haftmann@33968
   612
val add_include = gen_add_include (K I);
haftmann@31156
   613
val add_include_cmd = gen_add_include Code.read_const;
haftmann@24219
   614
haftmann@39159
   615
fun add_module_alias target (thyname, "") =
haftmann@39159
   616
      map_module_alias target (Symtab.delete thyname)
haftmann@39159
   617
  | add_module_alias target (thyname, modlname) =
haftmann@39159
   618
      let
haftmann@39159
   619
        val xs = Long_Name.explode modlname;
haftmann@39159
   620
        val xs' = map (Name.desymbolize true) xs;
haftmann@39159
   621
      in if xs' = xs
haftmann@39159
   622
        then map_module_alias target (Symtab.update (thyname, modlname))
haftmann@39159
   623
        else error ("Invalid module name: " ^ quote modlname ^ "\n"
haftmann@39159
   624
          ^ "perhaps try " ^ quote (Long_Name.implode xs'))
haftmann@39159
   625
      end;
haftmann@24219
   626
haftmann@28663
   627
fun gen_allow_abort prep_const raw_c thy =
haftmann@24841
   628
  let
haftmann@28663
   629
    val c = prep_const thy raw_c;
haftmann@34243
   630
  in thy |> (Targets.map o apfst o apsnd) (insert (op =) c) end;
haftmann@24841
   631
haftmann@27000
   632
haftmann@27103
   633
(* concrete syntax *)
haftmann@27000
   634
haftmann@34021
   635
local
haftmann@34021
   636
haftmann@48447
   637
fun zip_list (x :: xs) f g =
haftmann@34141
   638
  f
haftmann@37854
   639
  :|-- (fn y =>
haftmann@34141
   640
    fold_map (fn x => g |-- f >> pair x) xs
haftmann@37854
   641
    :|-- (fn xys => pair ((x, y) :: xys)));
haftmann@34141
   642
haftmann@37854
   643
fun process_multi_syntax parse_thing parse_syntax change =
haftmann@37854
   644
  (Parse.and_list1 parse_thing
wenzelm@47823
   645
  :|-- (fn things => Scan.repeat1 (@{keyword "("} |-- Parse.name --
wenzelm@47981
   646
        (zip_list things parse_syntax @{keyword "and"}) --| @{keyword ")"})))
haftmann@37854
   647
  >> (Toplevel.theory oo fold)
haftmann@37854
   648
    (fn (target, syns) => fold (fn (raw_x, syn) => change target raw_x syn) syns);
haftmann@24219
   649
haftmann@24219
   650
in
haftmann@24219
   651
haftmann@39149
   652
val add_class_syntax = gen_add_class_syntax cert_class;
haftmann@39149
   653
val add_instance_syntax = gen_add_instance_syntax cert_inst;
haftmann@39149
   654
val add_tyco_syntax = gen_add_tyco_syntax cert_tyco;
haftmann@39149
   655
val add_const_syntax = gen_add_const_syntax (K I);
haftmann@27103
   656
val allow_abort = gen_allow_abort (K I);
haftmann@28054
   657
val add_reserved = add_reserved;
haftmann@33968
   658
val add_include = add_include;
haftmann@24219
   659
haftmann@39149
   660
val add_class_syntax_cmd = gen_add_class_syntax read_class;
haftmann@39149
   661
val add_instance_syntax_cmd = gen_add_instance_syntax read_inst;
haftmann@39149
   662
val add_tyco_syntax_cmd = gen_add_tyco_syntax read_tyco;
haftmann@39149
   663
val add_const_syntax_cmd = gen_add_const_syntax Code.read_const;
haftmann@31156
   664
val allow_abort_cmd = gen_allow_abort Code.read_const;
haftmann@24219
   665
haftmann@28054
   666
fun parse_args f args =
wenzelm@36969
   667
  case Scan.read Token.stopper f args
haftmann@28054
   668
   of SOME x => x
haftmann@28054
   669
    | NONE => error "Bad serializer arguments";
haftmann@28054
   670
haftmann@28054
   671
haftmann@27304
   672
(** Isar setup **)
haftmann@27103
   673
wenzelm@47823
   674
val code_expr_argsP = Scan.optional (@{keyword "("} |-- Args.parse --| @{keyword ")"}) [];
haftmann@27103
   675
haftmann@30492
   676
val code_exprP =
haftmann@37824
   677
  Scan.repeat1 Parse.term_group :|-- (fn raw_cs =>
wenzelm@47823
   678
    ((@{keyword "checking"} |-- Scan.repeat (Parse.name
wenzelm@47823
   679
      -- ((@{keyword "?"} |-- Scan.succeed false) || Scan.succeed true) -- code_expr_argsP))
haftmann@37824
   680
      >> (fn seris => check_code_cmd raw_cs seris)
wenzelm@47823
   681
    || Scan.repeat (@{keyword "in"} |-- Parse.name
wenzelm@47823
   682
       -- Scan.optional (@{keyword "module_name"} |-- Parse.name) ""
wenzelm@47823
   683
       -- Scan.optional (@{keyword "file"} |-- Parse.name) ""
haftmann@37824
   684
       -- code_expr_argsP) >> (fn seris => export_code_cmd raw_cs seris)));
haftmann@27103
   685
wenzelm@24867
   686
val _ =
wenzelm@47836
   687
  Outer_Syntax.command @{command_spec "code_class"} "define code syntax for class"
wenzelm@47836
   688
    (process_multi_syntax Parse.xname (Scan.option Parse.string)
wenzelm@47836
   689
      add_class_syntax_cmd);
haftmann@24219
   690
wenzelm@24867
   691
val _ =
wenzelm@47836
   692
  Outer_Syntax.command @{command_spec "code_instance"} "define code syntax for instance"
wenzelm@47836
   693
    (process_multi_syntax (Parse.xname --| @{keyword "::"} -- Parse.xname)
wenzelm@36970
   694
      (Scan.option (Parse.minus >> K ()))
wenzelm@47836
   695
      add_instance_syntax_cmd);
haftmann@24219
   696
wenzelm@24867
   697
val _ =
wenzelm@47836
   698
  Outer_Syntax.command @{command_spec "code_type"} "define code syntax for type constructor"
wenzelm@47836
   699
    (process_multi_syntax Parse.xname Code_Printer.parse_tyco_syntax
wenzelm@47836
   700
      add_tyco_syntax_cmd);
haftmann@24219
   701
wenzelm@24867
   702
val _ =
wenzelm@47836
   703
  Outer_Syntax.command @{command_spec "code_const"} "define code syntax for constant"
wenzelm@47836
   704
    (process_multi_syntax Parse.term_group Code_Printer.parse_const_syntax
wenzelm@47836
   705
      add_const_syntax_cmd);
haftmann@24219
   706
wenzelm@24867
   707
val _ =
wenzelm@47836
   708
  Outer_Syntax.command @{command_spec "code_reserved"}
wenzelm@47836
   709
    "declare words as reserved for target language"
wenzelm@47836
   710
    (Parse.name -- Scan.repeat1 Parse.name
wenzelm@47836
   711
      >> (fn (target, reserveds) => (Toplevel.theory o fold (add_reserved target)) reserveds));
haftmann@24219
   712
wenzelm@24867
   713
val _ =
wenzelm@47836
   714
  Outer_Syntax.command @{command_spec "code_include"}
wenzelm@47836
   715
    "declare piece of code to be included in generated code"
wenzelm@47836
   716
    (Parse.name -- Parse.name -- (Parse.text :|--
wenzelm@47836
   717
      (fn "-" => Scan.succeed NONE
wenzelm@47836
   718
        | s => Scan.optional (@{keyword "attach"} |-- Scan.repeat1 Parse.term) [] >> pair s >> SOME))
wenzelm@47836
   719
      >> (fn ((target, name), content_consts) =>
wenzelm@47836
   720
          (Toplevel.theory o add_include_cmd target) (name, content_consts)));
haftmann@24992
   721
haftmann@24992
   722
val _ =
wenzelm@47836
   723
  Outer_Syntax.command @{command_spec "code_modulename"} "alias module to other name"
wenzelm@47836
   724
    (Parse.name -- Scan.repeat1 (Parse.name -- Parse.name)
wenzelm@47836
   725
      >> (fn (target, modlnames) => (Toplevel.theory o fold (add_module_alias target)) modlnames));
haftmann@24219
   726
wenzelm@24867
   727
val _ =
wenzelm@47836
   728
  Outer_Syntax.command @{command_spec "code_abort"}
wenzelm@47836
   729
    "permit constant to be implemented as program abort"
wenzelm@47836
   730
    (Scan.repeat1 Parse.term_group >> (Toplevel.theory o fold allow_abort_cmd));
haftmann@24219
   731
haftmann@27103
   732
val _ =
wenzelm@47836
   733
  Outer_Syntax.command @{command_spec "export_code"} "generate executable code for constants"
wenzelm@47836
   734
    (Parse.!!! code_exprP >> (fn f => Toplevel.keep (f o Toplevel.theory_of)));
haftmann@30492
   735
haftmann@24219
   736
end; (*local*)
haftmann@24219
   737
haftmann@39870
   738
haftmann@39870
   739
(** external entrance point -- for codegen tool **)
haftmann@39870
   740
haftmann@39983
   741
fun codegen_tool thyname cmd_expr =
haftmann@39870
   742
  let
haftmann@39870
   743
    val thy = Thy_Info.get_theory thyname;
haftmann@39870
   744
    val parse = Scan.read Token.stopper (Parse.!!! code_exprP) o
haftmann@39870
   745
      (filter Token.is_proper o Outer_Syntax.scan Position.none);
haftmann@39870
   746
  in case parse cmd_expr
haftmann@39870
   747
   of SOME f => (writeln "Now generating code..."; f thy)
haftmann@39870
   748
    | NONE => error ("Bad directive " ^ quote cmd_expr)
haftmann@39870
   749
  end;
haftmann@39870
   750
wenzelm@44450
   751
wenzelm@44450
   752
(** theory setup **)
wenzelm@44450
   753
wenzelm@44450
   754
val setup = antiq_setup;
wenzelm@44450
   755
haftmann@24219
   756
end; (*struct*)