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