src/Tools/Code/code_target.ML
author haftmann
Tue, 31 Aug 2010 13:55:54 +0200
changeset 38924 fcd1d0457e27
parent 38923 79d7f2b4cf71
child 38925 ced825abdc1d
permissions -rw-r--r--
removed serializer interface redundancies
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37745
6315b6426200 checking generated code for various target languages
haftmann
parents: 37528
diff changeset
     1
(*  Title:      Tools/Code/code_target.ML
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     2
    Author:     Florian Haftmann, TU Muenchen
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     3
38910
6af1d8673cbf width is a formal parameter of serialization
haftmann
parents: 38909
diff changeset
     4
Generic infrastructure for target language data.
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     5
*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     6
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     7
signature CODE_TARGET =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     8
sig
36471
5aae37575885 exported cert_tyco, read_tyco
haftmann
parents: 36271
diff changeset
     9
  val cert_tyco: theory -> string -> string
5aae37575885 exported cert_tyco, read_tyco
haftmann
parents: 36271
diff changeset
    10
  val read_tyco: theory -> string -> string
5aae37575885 exported cert_tyco, read_tyco
haftmann
parents: 36271
diff changeset
    11
38918
haftmann
parents: 38917
diff changeset
    12
  val export_code_for: theory -> Path.T option -> string -> int option -> string option -> Token.T list
haftmann
parents: 38917
diff changeset
    13
    -> Code_Thingol.naming -> Code_Thingol.program -> string list -> unit
haftmann
parents: 38917
diff changeset
    14
  val produce_code_for: theory -> string -> int option -> string option -> Token.T list
haftmann
parents: 38917
diff changeset
    15
    -> Code_Thingol.naming -> Code_Thingol.program -> string list * string list -> string * string option list
haftmann
parents: 38917
diff changeset
    16
  val check_code_for: theory -> string -> bool -> Token.T list
haftmann
parents: 38917
diff changeset
    17
    -> Code_Thingol.naming -> Code_Thingol.program -> string list -> unit
haftmann
parents: 38917
diff changeset
    18
haftmann
parents: 38917
diff changeset
    19
  val export_code: theory -> string list
haftmann
parents: 38917
diff changeset
    20
    -> (((string * string option) * Path.T option) * Token.T list) list -> unit
haftmann
parents: 38917
diff changeset
    21
  val produce_code: theory -> string list -> (Code_Thingol.naming -> string list)
haftmann
parents: 38917
diff changeset
    22
    -> string -> int option -> string option -> Token.T list -> string * string option list
haftmann
parents: 38917
diff changeset
    23
  val check_code: theory -> string list
haftmann
parents: 38917
diff changeset
    24
    -> ((string * bool) * Token.T list) list -> unit
haftmann
parents: 38917
diff changeset
    25
haftmann
parents: 38917
diff changeset
    26
  val shell_command: string (*theory name*) -> string (*export_code expr*) -> unit
haftmann
parents: 38917
diff changeset
    27
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    28
  type serializer
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    29
  type literals = Code_Printer.literals
37822
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
    30
  val add_target: string * { serializer: serializer, literals: literals,
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
    31
    check: { env_var: string, make_destination: Path.T -> Path.T,
38863
9070a7c356c9 code checking: compiler invocation happens in same directory as generated file -- avoid problem with different path representations on cygwin
haftmann
parents: 38784
diff changeset
    32
      make_command: string -> string -> string } } -> theory -> theory
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28090
diff changeset
    33
  val extend_target: string *
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28090
diff changeset
    34
      (string * (Code_Thingol.naming -> Code_Thingol.program -> Code_Thingol.program))
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    35
    -> theory -> theory
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    36
  val assert_target: theory -> string -> string
38918
haftmann
parents: 38917
diff changeset
    37
  val the_literals: theory -> string -> literals
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    38
  type serialization
36959
f5417836dbea renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents: 36537
diff changeset
    39
  val parse_args: 'a parser -> Token.T list -> 'a
38916
haftmann
parents: 38914
diff changeset
    40
  val serialization: (int -> Path.T option -> 'a -> unit)
38910
6af1d8673cbf width is a formal parameter of serialization
haftmann
parents: 38909
diff changeset
    41
    -> (int -> 'a -> string * string option list)
6af1d8673cbf width is a formal parameter of serialization
haftmann
parents: 38909
diff changeset
    42
    -> 'a -> int -> serialization
38918
haftmann
parents: 38917
diff changeset
    43
  val set_default_code_width: int -> theory -> theory
38917
haftmann
parents: 38916
diff changeset
    44
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    45
  val allow_abort: string -> theory -> theory
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    46
  type tyco_syntax = Code_Printer.tyco_syntax
37876
48116a1764c5 consolidate const_syntax naming
haftmann
parents: 37844
diff changeset
    47
  type const_syntax = Code_Printer.const_syntax
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
    48
  val add_class_syntax: string -> class -> string option -> theory -> theory
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
    49
  val add_instance_syntax: string -> class * string -> unit option -> theory -> theory
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
    50
  val add_tyco_syntax: string -> string -> tyco_syntax option -> theory -> theory
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
    51
  val add_const_syntax: string -> string -> const_syntax option -> theory -> theory
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    52
  val add_reserved: string -> string -> theory -> theory
33969
1e7ca47c6c3d dropped some unused bindings
haftmann
parents: 33522
diff changeset
    53
  val add_include: string -> string * (string * string list) option -> theory -> theory
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    54
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    55
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    56
structure Code_Target : CODE_TARGET =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    57
struct
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    58
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    59
open Basic_Code_Thingol;
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    60
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    61
type literals = Code_Printer.literals;
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    62
type tyco_syntax = Code_Printer.tyco_syntax;
37876
48116a1764c5 consolidate const_syntax naming
haftmann
parents: 37844
diff changeset
    63
type const_syntax = Code_Printer.const_syntax;
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    64
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    65
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
    66
(** abstract nonsense **)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    67
38910
6af1d8673cbf width is a formal parameter of serialization
haftmann
parents: 38909
diff changeset
    68
datatype destination = File of Path.T option | String of string list;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28090
diff changeset
    69
type serialization = destination -> (string * string option list) option;
27014
a5f53d9d2b60 yet another attempt to circumvent printmode problems
haftmann
parents: 27001
diff changeset
    70
38913
haftmann
parents: 38912
diff changeset
    71
fun stmt_names_of_destination (String stmt_names) = stmt_names
27304
720c8115d723 explicit thm context for error messages
haftmann
parents: 27103
diff changeset
    72
  | stmt_names_of_destination _ = [];
27014
a5f53d9d2b60 yet another attempt to circumvent printmode problems
haftmann
parents: 27001
diff changeset
    73
38921
15f8cffdbf5d dropped legacy interfaces
haftmann
parents: 38918
diff changeset
    74
fun serialization output _ content width (File some_path) = (output width some_path content; NONE)
15f8cffdbf5d dropped legacy interfaces
haftmann
parents: 38918
diff changeset
    75
  | serialization _ string content width (String _) = SOME (string width content);
27550
e97d61a67063 simple inheritance concept
haftmann
parents: 27437
diff changeset
    76
38918
haftmann
parents: 38917
diff changeset
    77
fun file some_path f = (f (File some_path); ());
38917
haftmann
parents: 38916
diff changeset
    78
fun string stmt_names f = the (f (String stmt_names));
haftmann
parents: 38916
diff changeset
    79
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    80
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    81
(** theory data **)
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    82
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
    83
datatype symbol_syntax_data = Symbol_Syntax_Data of {
28690
fc51fa5efea1 simplified user-defined class syntax
haftmann
parents: 28663
diff changeset
    84
  class: string Symtab.table,
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30513
diff changeset
    85
  instance: unit Symreltab.table,
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    86
  tyco: Code_Printer.tyco_syntax Symtab.table,
37876
48116a1764c5 consolidate const_syntax naming
haftmann
parents: 37844
diff changeset
    87
  const: Code_Printer.const_syntax Symtab.table
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    88
};
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
    89
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
    90
fun make_symbol_syntax_data ((class, instance), (tyco, const)) =
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
    91
  Symbol_Syntax_Data { class = class, instance = instance, tyco = tyco, const = const };
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
    92
fun map_symbol_syntax_data f (Symbol_Syntax_Data { class, instance, tyco, const }) =
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
    93
  make_symbol_syntax_data (f ((class, instance), (tyco, const)));
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
    94
fun merge_symbol_syntax_data
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
    95
  (Symbol_Syntax_Data { class = class1, instance = instance1, tyco = tyco1, const = const1 },
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
    96
    Symbol_Syntax_Data { class = class2, instance = instance2, tyco = tyco2, const = const2 }) =
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
    97
  make_symbol_syntax_data (
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    98
    (Symtab.join (K snd) (class1, class2),
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30513
diff changeset
    99
       Symreltab.join (K snd) (instance1, instance2)),
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   100
    (Symtab.join (K snd) (tyco1, tyco2),
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   101
       Symtab.join (K snd) (const1, const2))
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   102
  );
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   103
38924
fcd1d0457e27 removed serializer interface redundancies
haftmann
parents: 38923
diff changeset
   104
type serializer = Token.T list          (*arguments*)
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   105
  -> (string -> string)                 (*labelled_name*)
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   106
  -> string list                        (*reserved symbols*)
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   107
  -> (string * Pretty.T) list           (*includes*)
38924
fcd1d0457e27 removed serializer interface redundancies
haftmann
parents: 38923
diff changeset
   108
  -> bool                               (*singleton module*)
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   109
  -> (string -> string option)          (*module aliasses*)
28690
fc51fa5efea1 simplified user-defined class syntax
haftmann
parents: 28663
diff changeset
   110
  -> (string -> string option)          (*class syntax*)
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
   111
  -> (string -> Code_Printer.tyco_syntax option)
37876
48116a1764c5 consolidate const_syntax naming
haftmann
parents: 37844
diff changeset
   112
  -> (string -> Code_Printer.activated_const_syntax option)
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   113
  -> Code_Thingol.program
38779
89f654951200 tuned serializer interface
haftmann
parents: 37972
diff changeset
   114
  -> (string list * string list)        (*selected statements*)
38910
6af1d8673cbf width is a formal parameter of serialization
haftmann
parents: 38909
diff changeset
   115
  -> int
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   116
  -> serialization;
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   117
38909
919c924067f3 whitespace tuning
haftmann
parents: 38908
diff changeset
   118
datatype description = Fundamental of { serializer: serializer,
38910
6af1d8673cbf width is a formal parameter of serialization
haftmann
parents: 38909
diff changeset
   119
      literals: literals,
37822
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
   120
      check: { env_var: string, make_destination: Path.T -> Path.T,
38863
9070a7c356c9 code checking: compiler invocation happens in same directory as generated file -- avoid problem with different path representations on cygwin
haftmann
parents: 38784
diff changeset
   121
        make_command: string -> string -> string } }
38909
919c924067f3 whitespace tuning
haftmann
parents: 38908
diff changeset
   122
  | Extension of string *
919c924067f3 whitespace tuning
haftmann
parents: 38908
diff changeset
   123
      (Code_Thingol.naming -> Code_Thingol.program -> Code_Thingol.program);
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   124
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   125
datatype target = Target of {
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   126
  serial: serial,
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   127
  description: description,
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   128
  reserved: string list,
28926
530b83967c82 code_include with attach
haftmann
parents: 28690
diff changeset
   129
  includes: (Pretty.T * string list) Symtab.table,
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   130
  symbol_syntax_data: symbol_syntax_data,
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   131
  module_alias: string Symtab.table
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   132
};
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   133
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   134
fun make_target ((serial, description), ((reserved, includes), (symbol_syntax_data, module_alias))) =
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   135
  Target { serial = serial, description = description, reserved = reserved, 
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   136
    includes = includes, symbol_syntax_data = symbol_syntax_data, module_alias = module_alias };
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   137
fun map_target f ( Target { serial, description, reserved, includes, symbol_syntax_data, module_alias } ) =
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   138
  make_target (f ((serial, description), ((reserved, includes), (symbol_syntax_data, module_alias))));
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   139
fun merge_target strict target (Target { serial = serial1, description = description,
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   140
  reserved = reserved1, includes = includes1,
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   141
  symbol_syntax_data = symbol_syntax_data1, module_alias = module_alias1 },
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   142
    Target { serial = serial2, description = _,
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   143
      reserved = reserved2, includes = includes2,
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   144
      symbol_syntax_data = symbol_syntax_data2, module_alias = module_alias2 }) =
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   145
  if serial1 = serial2 orelse not strict then
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   146
    make_target ((serial1, description),
37972
f37a8d488105 restored unusual snd-biased merge/join policy -- required due to non-conservative code setups
haftmann
parents: 37898
diff changeset
   147
      ((merge (op =) (reserved1, reserved2), Symtab.join (K snd) (includes1, includes2)),
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   148
        (merge_symbol_syntax_data (symbol_syntax_data1, symbol_syntax_data2),
37972
f37a8d488105 restored unusual snd-biased merge/join policy -- required due to non-conservative code setups
haftmann
parents: 37898
diff changeset
   149
          Symtab.join (K snd) (module_alias1, module_alias2))
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   150
    ))
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   151
  else
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   152
    error ("Incompatible targets: " ^ quote target);
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   153
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   154
fun the_description (Target { description, ... }) = description;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   155
fun the_reserved (Target { reserved, ... }) = reserved;
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   156
fun the_includes (Target { includes, ... }) = includes;
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   157
fun the_symbol_syntax_data (Target { symbol_syntax_data = Symbol_Syntax_Data x, ... }) = x;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   158
fun the_module_alias (Target { module_alias , ... }) = module_alias;
27437
727297fcf7c8 cached code for code antiquotation
haftmann
parents: 27436
diff changeset
   159
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   160
structure Targets = Theory_Data
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   161
(
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   162
  type T = (target Symtab.table * string list) * int;
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   163
  val empty = ((Symtab.empty, []), 80);
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   164
  val extend = I;
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   165
  fun merge (((target1, exc1), width1), ((target2, exc2), width2)) : T =
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   166
    ((Symtab.join (merge_target true) (target1, target2),
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   167
      Library.merge (op =) (exc1, exc2)), Int.max (width1, width2));
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   168
);
27436
9581777503e9 code antiquotation roaring ahead
haftmann
parents: 27372
diff changeset
   169
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   170
val abort_allowed = snd o fst o Targets.get;
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   171
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   172
fun assert_target thy target = if Symtab.defined ((fst o fst) (Targets.get thy)) target
33969
1e7ca47c6c3d dropped some unused bindings
haftmann
parents: 33522
diff changeset
   173
  then target
1e7ca47c6c3d dropped some unused bindings
haftmann
parents: 33522
diff changeset
   174
  else error ("Unknown code target language: " ^ quote target);
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   175
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   176
fun put_target (target, seri) thy =
27304
720c8115d723 explicit thm context for error messages
haftmann
parents: 27103
diff changeset
   177
  let
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   178
    val lookup_target = Symtab.lookup ((fst o fst) (Targets.get thy));
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   179
    val _ = case seri
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   180
     of Extension (super, _) => if is_some (lookup_target super) then ()
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   181
          else error ("Unknown code target language: " ^ quote super)
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   182
      | _ => ();
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   183
    val overwriting = case (Option.map the_description o lookup_target) target
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28090
diff changeset
   184
     of NONE => false
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   185
      | SOME (Extension _) => true
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   186
      | SOME (Fundamental _) => (case seri
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   187
         of Extension _ => error ("Will not overwrite existing target " ^ quote target)
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28090
diff changeset
   188
          | _ => true);
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28090
diff changeset
   189
    val _ = if overwriting
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   190
      then warning ("Overwriting existing target " ^ quote target)
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28090
diff changeset
   191
      else (); 
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   192
  in
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   193
    thy
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   194
    |> (Targets.map o apfst o apfst o Symtab.update)
31599
97b4d289c646 tuned make/map/merge combinators
haftmann
parents: 31156
diff changeset
   195
          (target, make_target ((serial (), seri), (([], Symtab.empty),
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   196
            (make_symbol_syntax_data ((Symtab.empty, Symreltab.empty),
38909
919c924067f3 whitespace tuning
haftmann
parents: 38908
diff changeset
   197
              (Symtab.empty, Symtab.empty)), Symtab.empty))))
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   198
  end;
27436
9581777503e9 code antiquotation roaring ahead
haftmann
parents: 27372
diff changeset
   199
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   200
fun add_target (target, seri) = put_target (target, Fundamental seri);
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   201
fun extend_target (target, (super, modify)) =
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   202
  put_target (target, Extension (super, modify));
27436
9581777503e9 code antiquotation roaring ahead
haftmann
parents: 27372
diff changeset
   203
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   204
fun map_target_data target f thy =
27436
9581777503e9 code antiquotation roaring ahead
haftmann
parents: 27372
diff changeset
   205
  let
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   206
    val _ = assert_target thy target;
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   207
  in
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   208
    thy
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   209
    |> (Targets.map o apfst o apfst o Symtab.map_entry target o map_target) f
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   210
  end;
27304
720c8115d723 explicit thm context for error messages
haftmann
parents: 27103
diff changeset
   211
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   212
fun map_reserved target =
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   213
  map_target_data target o apsnd o apfst o apfst;
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   214
fun map_includes target =
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   215
  map_target_data target o apsnd o apfst o apsnd;
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   216
fun map_name_syntax target =
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   217
  map_target_data target o apsnd o apsnd o apfst o map_symbol_syntax_data;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   218
fun map_module_alias target =
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   219
  map_target_data target o apsnd o apsnd o apsnd;
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   220
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   221
fun set_default_code_width k = (Targets.map o apsnd) (K k);
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   222
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   223
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   224
(** serializer usage **)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   225
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   226
(* montage *)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   227
37822
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
   228
fun the_fundamental thy =
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   229
  let
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   230
    val ((targets, _), _) = Targets.get thy;
37822
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
   231
    fun fundamental target = case Symtab.lookup targets target
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   232
     of SOME data => (case the_description data
37822
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
   233
         of Fundamental data => data
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
   234
          | Extension (super, _) => fundamental super)
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   235
      | NONE => error ("Unknown code target language: " ^ quote target);
37822
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
   236
  in fundamental end;
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
   237
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
   238
fun the_literals thy = #literals o the_fundamental thy;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   239
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   240
local
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   241
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   242
fun activate_syntax lookup_name src_tab = Symtab.empty
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   243
  |> fold_map (fn thing_identifier => fn tab => case lookup_name thing_identifier
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   244
       of SOME name => (SOME name,
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   245
            Symtab.update_new (name, the (Symtab.lookup src_tab thing_identifier)) tab)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   246
        | NONE => (NONE, tab)) (Symtab.keys src_tab)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   247
  |>> map_filter I;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   248
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   249
fun activate_const_syntax thy literals src_tab naming = (Symtab.empty, naming)
37881
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   250
  |> fold_map (fn c => fn (tab, naming) =>
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   251
      case Code_Thingol.lookup_const naming c
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   252
       of SOME name => let
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   253
              val (syn, naming') = Code_Printer.activate_const_syntax thy
37881
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   254
                literals c (the (Symtab.lookup src_tab c)) naming
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   255
            in (SOME name, (Symtab.update_new (name, syn) tab, naming')) end
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   256
        | NONE => (NONE, (tab, naming))) (Symtab.keys src_tab)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   257
  |>> map_filter I;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   258
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   259
fun invoke_serializer thy abortable serializer literals reserved abs_includes 
38910
6af1d8673cbf width is a formal parameter of serialization
haftmann
parents: 38909
diff changeset
   260
    module_alias class instance tyco const module_name args naming program2 (names1, presentation_names) width =
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   261
  let
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   262
    val (names_class, class') =
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   263
      activate_syntax (Code_Thingol.lookup_class naming) class;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   264
    val names_inst = map_filter (Code_Thingol.lookup_instance naming)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   265
      (Symreltab.keys instance);
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   266
    val (names_tyco, tyco') =
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   267
      activate_syntax (Code_Thingol.lookup_tyco naming) tyco;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   268
    val (names_const, (const', _)) =
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   269
      activate_const_syntax thy literals const naming;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   270
    val names_hidden = names_class @ names_inst @ names_tyco @ names_const;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   271
    val names2 = subtract (op =) names_hidden names1;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   272
    val program3 = Graph.subgraph (not o member (op =) names_hidden) program2;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   273
    val names_all = Graph.all_succs program3 names2;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   274
    val includes = abs_includes names_all;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   275
    val program4 = Graph.subgraph (member (op =) names_all) program3;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   276
    val empty_funs = filter_out (member (op =) abortable)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   277
      (Code_Thingol.empty_funs program3);
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   278
    val _ = if null empty_funs then () else error ("No code equations for "
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   279
      ^ commas (map (Sign.extern_const thy) empty_funs));
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   280
  in
38924
fcd1d0457e27 removed serializer interface redundancies
haftmann
parents: 38923
diff changeset
   281
    serializer args (Code_Thingol.labelled_name thy program2) reserved includes
fcd1d0457e27 removed serializer interface redundancies
haftmann
parents: 38923
diff changeset
   282
      (is_some module_name) (if is_some module_name then K module_name else Symtab.lookup module_alias)
38779
89f654951200 tuned serializer interface
haftmann
parents: 37972
diff changeset
   283
      (Symtab.lookup class') (Symtab.lookup tyco') (Symtab.lookup const')
38910
6af1d8673cbf width is a formal parameter of serialization
haftmann
parents: 38909
diff changeset
   284
      program4 (names1, presentation_names) width
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   285
  end;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   286
38921
15f8cffdbf5d dropped legacy interfaces
haftmann
parents: 38918
diff changeset
   287
fun mount_serializer thy target some_width raw_module_name args naming program names destination =
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   288
  let
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   289
    val ((targets, abortable), default_width) = Targets.get thy;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   290
    fun collapse_hierarchy target =
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   291
      let
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   292
        val data = case Symtab.lookup targets target
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   293
         of SOME data => data
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   294
          | NONE => error ("Unknown code target language: " ^ quote target);
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   295
      in case the_description data
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   296
       of Fundamental _ => (I, data)
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   297
        | Extension (super, modify) => let
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   298
            val (modify', data') = collapse_hierarchy super
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   299
          in (modify' #> modify naming, merge_target false target (data', data)) end
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   300
      end;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   301
    val (modify, data) = collapse_hierarchy target;
38921
15f8cffdbf5d dropped legacy interfaces
haftmann
parents: 38918
diff changeset
   302
    val serializer = case the_description data
15f8cffdbf5d dropped legacy interfaces
haftmann
parents: 38918
diff changeset
   303
    of Fundamental seri => #serializer seri;
38779
89f654951200 tuned serializer interface
haftmann
parents: 37972
diff changeset
   304
    val presentation_names = stmt_names_of_destination destination;
89f654951200 tuned serializer interface
haftmann
parents: 37972
diff changeset
   305
    val module_name = if null presentation_names
89f654951200 tuned serializer interface
haftmann
parents: 37972
diff changeset
   306
      then raw_module_name else SOME "Code";
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   307
    val reserved = the_reserved data;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   308
    fun select_include names_all (name, (content, cs)) =
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   309
      if null cs then SOME (name, content)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   310
      else if exists (fn c => case Code_Thingol.lookup_const naming c
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   311
       of SOME name => member (op =) names_all name
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   312
        | NONE => false) cs
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   313
      then SOME (name, content) else NONE;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   314
    fun includes names_all = map_filter (select_include names_all)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   315
      ((Symtab.dest o the_includes) data);
38779
89f654951200 tuned serializer interface
haftmann
parents: 37972
diff changeset
   316
    val module_alias = the_module_alias data 
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   317
    val { class, instance, tyco, const } = the_symbol_syntax_data data;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   318
    val literals = the_literals thy target;
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   319
    val width = the_default default_width some_width;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   320
  in
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   321
    invoke_serializer thy abortable serializer literals reserved
38910
6af1d8673cbf width is a formal parameter of serialization
haftmann
parents: 38909
diff changeset
   322
      includes module_alias class instance tyco const module_name args
6af1d8673cbf width is a formal parameter of serialization
haftmann
parents: 38909
diff changeset
   323
        naming (modify program) (names, presentation_names) width destination
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   324
  end;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   325
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   326
in
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   327
38918
haftmann
parents: 38917
diff changeset
   328
fun export_code_for thy some_path target some_width some_module_name args naming program names =
38921
15f8cffdbf5d dropped legacy interfaces
haftmann
parents: 38918
diff changeset
   329
  file some_path (mount_serializer thy target some_width some_module_name args naming program names);
38918
haftmann
parents: 38917
diff changeset
   330
haftmann
parents: 38917
diff changeset
   331
fun produce_code_for thy target some_width some_module_name args naming program (names, selects) =
38921
15f8cffdbf5d dropped legacy interfaces
haftmann
parents: 38918
diff changeset
   332
  string selects (mount_serializer thy target some_width some_module_name args naming program names);
38918
haftmann
parents: 38917
diff changeset
   333
haftmann
parents: 38917
diff changeset
   334
fun check_code_for thy target strict args naming program names_cs =
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   335
  let
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   336
    val module_name = "Code_Test";
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   337
    val { env_var, make_destination, make_command } =
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   338
      (#check o the_fundamental thy) target;
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   339
    val env_param = getenv env_var;
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   340
    fun ext_check env_param p =
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   341
      let 
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   342
        val destination = make_destination p;
38921
15f8cffdbf5d dropped legacy interfaces
haftmann
parents: 38918
diff changeset
   343
        val _ = file (SOME destination) (mount_serializer thy target (SOME 80)
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   344
          (SOME module_name) args naming program names_cs);
38863
9070a7c356c9 code checking: compiler invocation happens in same directory as generated file -- avoid problem with different path representations on cygwin
haftmann
parents: 38784
diff changeset
   345
        val cmd = make_command env_param module_name;
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   346
      in if bash ("cd " ^ File.shell_path p ^ " && " ^ cmd ^ " 2>&1") <> 0
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   347
        then error ("Code check failed for " ^ target ^ ": " ^ cmd)
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   348
        else ()
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   349
      end;
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   350
  in if env_param = ""
37825
adc1143bc1a8 explicit optional checking
haftmann
parents: 37824
diff changeset
   351
    then if strict
adc1143bc1a8 explicit optional checking
haftmann
parents: 37824
diff changeset
   352
      then error (env_var ^ " not set; cannot check code for " ^ target)
adc1143bc1a8 explicit optional checking
haftmann
parents: 37824
diff changeset
   353
      else warning (env_var ^ " not set; skipped checking code for " ^ target)
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   354
    else Cache_IO.with_tmp_dir "Code_Test" (ext_check env_param)
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   355
  end;
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   356
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   357
end; (* local *)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   358
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   359
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   360
(* code generation *)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   361
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   362
fun transitivly_non_empty_funs thy naming program =
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   363
  let
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   364
    val cs = subtract (op =) (abort_allowed thy) (Code_Thingol.empty_funs program);
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   365
    val names = map_filter (Code_Thingol.lookup_const naming) cs;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   366
  in subtract (op =) (Graph.all_preds program names) (Graph.keys program) end;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   367
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   368
fun read_const_exprs thy cs =
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   369
  let
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   370
    val (cs1, cs2) = Code_Thingol.read_const_exprs thy cs;
36271
2ef9dbddfcb8 optionally ignore errors during translation of equations
haftmann
parents: 36121
diff changeset
   371
    val (names2, (naming, program)) = Code_Thingol.consts_program thy true cs2;
2ef9dbddfcb8 optionally ignore errors during translation of equations
haftmann
parents: 36121
diff changeset
   372
    val names3 = transitivly_non_empty_funs thy naming program;
2ef9dbddfcb8 optionally ignore errors during translation of equations
haftmann
parents: 36121
diff changeset
   373
    val cs3 = map_filter (fn (c, name) =>
2ef9dbddfcb8 optionally ignore errors during translation of equations
haftmann
parents: 36121
diff changeset
   374
      if member (op =) names3 name then SOME c else NONE) (cs2 ~~ names2);
2ef9dbddfcb8 optionally ignore errors during translation of equations
haftmann
parents: 36121
diff changeset
   375
  in union (op =) cs3 cs1 end;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   376
38918
haftmann
parents: 38917
diff changeset
   377
fun prep_destination "" = NONE
haftmann
parents: 38917
diff changeset
   378
  | prep_destination "-" = NONE
haftmann
parents: 38917
diff changeset
   379
  | prep_destination s = SOME (Path.explode s);
haftmann
parents: 38917
diff changeset
   380
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   381
fun export_code thy cs seris =
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   382
  let
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   383
    val (names_cs, (naming, program)) = Code_Thingol.consts_program thy false cs;
38918
haftmann
parents: 38917
diff changeset
   384
    val _ = map (fn (((target, module_name), some_path), args) =>
haftmann
parents: 38917
diff changeset
   385
      export_code_for thy some_path target NONE module_name args naming program names_cs) seris;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   386
  in () end;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   387
38918
haftmann
parents: 38917
diff changeset
   388
fun export_code_cmd raw_cs seris thy = export_code thy (read_const_exprs thy raw_cs)
haftmann
parents: 38917
diff changeset
   389
  ((map o apfst o apsnd) prep_destination seris);
haftmann
parents: 38917
diff changeset
   390
haftmann
parents: 38917
diff changeset
   391
fun produce_code thy cs names_stmt target some_width some_module_name args =
haftmann
parents: 38917
diff changeset
   392
  let
haftmann
parents: 38917
diff changeset
   393
    val (names_cs, (naming, program)) = Code_Thingol.consts_program thy false cs;
haftmann
parents: 38917
diff changeset
   394
  in produce_code_for thy target some_width some_module_name args naming program (names_cs, names_stmt naming) end;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   395
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   396
fun check_code thy cs seris =
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   397
  let
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   398
    val (names_cs, (naming, program)) = Code_Thingol.consts_program thy false cs;
38918
haftmann
parents: 38917
diff changeset
   399
    val _ = map (fn ((target, strict), args) =>
haftmann
parents: 38917
diff changeset
   400
      check_code_for thy target strict args naming program names_cs) seris;
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   401
  in () end;
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   402
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   403
fun check_code_cmd raw_cs seris thy = check_code thy (read_const_exprs thy raw_cs) seris;
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   404
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   405
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   406
(** serializer configuration **)
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   407
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   408
(* data access *)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   409
24992
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   410
fun cert_class thy class =
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   411
  let
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   412
    val _ = AxClass.get_info thy class;
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   413
  in class end;
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   414
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   415
fun read_class thy = cert_class thy o Sign.intern_class thy;
24992
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   416
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   417
fun cert_tyco thy tyco =
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   418
  let
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   419
    val _ = if Sign.declared_tyname thy tyco then ()
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   420
      else error ("No such type constructor: " ^ quote tyco);
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   421
  in tyco end;
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   422
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   423
fun read_tyco thy = cert_tyco thy o Sign.intern_type thy;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   424
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   425
fun cert_inst thy (class, tyco) =
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   426
  (cert_class thy class, cert_tyco thy tyco);
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   427
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   428
fun read_inst thy (raw_tyco, raw_class) =
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   429
  (read_class thy raw_class, read_tyco thy raw_tyco);
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   430
37844
haftmann
parents: 37840
diff changeset
   431
fun gen_add_syntax (mapp, upd, del) prep_x prep_syn target raw_x some_raw_syn thy =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   432
  let
37840
a3632a0b7d6c restored long-broken syntax sanity checks
haftmann
parents: 37825
diff changeset
   433
    val x = prep_x thy raw_x;
37844
haftmann
parents: 37840
diff changeset
   434
    val change = case some_raw_syn
haftmann
parents: 37840
diff changeset
   435
     of SOME raw_syn => upd (x, prep_syn thy x raw_syn)
haftmann
parents: 37840
diff changeset
   436
      | NONE => del x;
haftmann
parents: 37840
diff changeset
   437
  in (map_name_syntax target o mapp) change thy end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   438
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   439
fun gen_add_class_syntax prep_class =
37844
haftmann
parents: 37840
diff changeset
   440
  gen_add_syntax (apfst o apfst, Symtab.update, Symtab.delete_safe) prep_class ((K o K) I);
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   441
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   442
fun gen_add_instance_syntax prep_inst =
37844
haftmann
parents: 37840
diff changeset
   443
  gen_add_syntax (apfst o apsnd, Symreltab.update, Symreltab.delete_safe) prep_inst ((K o K) I);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   444
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   445
fun gen_add_tyco_syntax prep_tyco =
37844
haftmann
parents: 37840
diff changeset
   446
  gen_add_syntax (apsnd o apfst, Symtab.update, Symtab.delete_safe) prep_tyco
haftmann
parents: 37840
diff changeset
   447
    (fn thy => fn tyco => fn syn => if fst syn <> Sign.arity_number thy tyco
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   448
      then error ("Number of arguments mismatch in syntax for type constructor " ^ quote tyco)
37844
haftmann
parents: 37840
diff changeset
   449
      else syn);
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   450
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   451
fun gen_add_const_syntax prep_const =
37844
haftmann
parents: 37840
diff changeset
   452
  gen_add_syntax (apsnd o apsnd, Symtab.update, Symtab.delete_safe) prep_const
37881
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   453
    (fn thy => fn c => fn syn =>
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   454
      if Code_Printer.requires_args syn > Code.args_number thy c
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24381
diff changeset
   455
      then error ("Too many arguments in syntax for constant " ^ quote c)
37881
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   456
      else syn);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   457
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   458
fun add_reserved target =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   459
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   460
    fun add sym syms = if member (op =) syms sym
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   461
      then error ("Reserved symbol " ^ quote sym ^ " already declared")
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   462
      else insert (op =) sym syms
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   463
  in map_reserved target o add end;
24992
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   464
28926
530b83967c82 code_include with attach
haftmann
parents: 28690
diff changeset
   465
fun gen_add_include read_const target args thy =
24992
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   466
  let
28926
530b83967c82 code_include with attach
haftmann
parents: 28690
diff changeset
   467
    fun add (name, SOME (content, raw_cs)) incls =
24992
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   468
          let
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   469
            val _ = if Symtab.defined incls name
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   470
              then warning ("Overwriting existing include " ^ name)
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   471
              else ();
28926
530b83967c82 code_include with attach
haftmann
parents: 28690
diff changeset
   472
            val cs = map (read_const thy) raw_cs;
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
   473
          in Symtab.update (name, (Code_Printer.str content, cs)) incls end
28926
530b83967c82 code_include with attach
haftmann
parents: 28690
diff changeset
   474
      | add (name, NONE) incls = Symtab.delete name incls;
530b83967c82 code_include with attach
haftmann
parents: 28690
diff changeset
   475
  in map_includes target (add args) thy end;
530b83967c82 code_include with attach
haftmann
parents: 28690
diff changeset
   476
33969
1e7ca47c6c3d dropped some unused bindings
haftmann
parents: 33522
diff changeset
   477
val add_include = gen_add_include (K I);
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31056
diff changeset
   478
val add_include_cmd = gen_add_include Code.read_const;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   479
31013
69a476d6fea6 Symbol.name_of and Name.desymbolize
haftmann
parents: 30963
diff changeset
   480
fun add_module_alias target (thyname, modlname) =
69a476d6fea6 Symbol.name_of and Name.desymbolize
haftmann
parents: 30963
diff changeset
   481
  let
69a476d6fea6 Symbol.name_of and Name.desymbolize
haftmann
parents: 30963
diff changeset
   482
    val xs = Long_Name.explode modlname;
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 31013
diff changeset
   483
    val xs' = map (Name.desymbolize true) xs;
31013
69a476d6fea6 Symbol.name_of and Name.desymbolize
haftmann
parents: 30963
diff changeset
   484
  in if xs' = xs
69a476d6fea6 Symbol.name_of and Name.desymbolize
haftmann
parents: 30963
diff changeset
   485
    then map_module_alias target (Symtab.update (thyname, modlname))
69a476d6fea6 Symbol.name_of and Name.desymbolize
haftmann
parents: 30963
diff changeset
   486
    else error ("Invalid module name: " ^ quote modlname ^ "\n"
69a476d6fea6 Symbol.name_of and Name.desymbolize
haftmann
parents: 30963
diff changeset
   487
      ^ "perhaps try " ^ quote (Long_Name.implode xs'))
69a476d6fea6 Symbol.name_of and Name.desymbolize
haftmann
parents: 30963
diff changeset
   488
  end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   489
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28090
diff changeset
   490
fun gen_allow_abort prep_const raw_c thy =
24841
df8448bc7a8b concept for exceptions
haftmann
parents: 24811
diff changeset
   491
  let
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28090
diff changeset
   492
    val c = prep_const thy raw_c;
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   493
  in thy |> (Targets.map o apfst o apsnd) (insert (op =) c) end;
24841
df8448bc7a8b concept for exceptions
haftmann
parents: 24811
diff changeset
   494
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   495
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   496
(* concrete syntax *)
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   497
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   498
local
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   499
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
   500
fun zip_list (x::xs) f g =
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
   501
  f
37881
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   502
  :|-- (fn y =>
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
   503
    fold_map (fn x => g |-- f >> pair x) xs
37881
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   504
    :|-- (fn xys => pair ((x, y) :: xys)));
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
   505
37881
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   506
fun process_multi_syntax parse_thing parse_syntax change =
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   507
  (Parse.and_list1 parse_thing
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   508
  :|-- (fn things => Scan.repeat1 (Parse.$$$ "(" |-- Parse.name --
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   509
        (zip_list things parse_syntax (Parse.$$$ "and")) --| Parse.$$$ ")")))
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   510
  >> (Toplevel.theory oo fold)
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   511
    (fn (target, syns) => fold (fn (raw_x, syn) => change target raw_x syn) syns);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   512
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   513
in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   514
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   515
val add_class_syntax = gen_add_class_syntax cert_class;
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   516
val add_instance_syntax = gen_add_instance_syntax cert_inst;
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   517
val add_tyco_syntax = gen_add_tyco_syntax cert_tyco;
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   518
val add_const_syntax = gen_add_const_syntax (K I);
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   519
val allow_abort = gen_allow_abort (K I);
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   520
val add_reserved = add_reserved;
33969
1e7ca47c6c3d dropped some unused bindings
haftmann
parents: 33522
diff changeset
   521
val add_include = add_include;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   522
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   523
val add_class_syntax_cmd = gen_add_class_syntax read_class;
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   524
val add_instance_syntax_cmd = gen_add_instance_syntax read_inst;
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   525
val add_tyco_syntax_cmd = gen_add_tyco_syntax read_tyco;
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   526
val add_const_syntax_cmd = gen_add_const_syntax Code.read_const;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31056
diff changeset
   527
val allow_abort_cmd = gen_allow_abort Code.read_const;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   528
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   529
fun parse_args f args =
36959
f5417836dbea renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents: 36537
diff changeset
   530
  case Scan.read Token.stopper f args
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   531
   of SOME x => x
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   532
    | NONE => error "Bad serializer arguments";
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   533
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   534
27304
720c8115d723 explicit thm context for error messages
haftmann
parents: 27103
diff changeset
   535
(** Isar setup **)
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   536
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   537
val (inK, module_nameK, fileK, checkingK) = ("in", "module_name", "file", "checking");
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   538
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   539
val code_expr_argsP = Scan.optional (Parse.$$$ "(" |-- Args.parse --| Parse.$$$ ")") [];
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   540
30494
c150e6fa4e0d consider exit status of code generation direcitve
haftmann
parents: 30242
diff changeset
   541
val code_exprP =
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   542
  Scan.repeat1 Parse.term_group :|-- (fn raw_cs =>
37825
adc1143bc1a8 explicit optional checking
haftmann
parents: 37824
diff changeset
   543
    ((Parse.$$$ checkingK |-- Scan.repeat (Parse.name
adc1143bc1a8 explicit optional checking
haftmann
parents: 37824
diff changeset
   544
      -- ((Parse.$$$ "?" |-- Scan.succeed false) || Scan.succeed true) -- code_expr_argsP))
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   545
      >> (fn seris => check_code_cmd raw_cs seris)
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   546
    || Scan.repeat (Parse.$$$ inK |-- Parse.name
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   547
       -- Scan.option (Parse.$$$ module_nameK |-- Parse.name)
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   548
       -- Scan.optional (Parse.$$$ fileK |-- Parse.name) ""
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   549
       -- code_expr_argsP) >> (fn seris => export_code_cmd raw_cs seris)));
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   550
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   551
val _ = List.app Keyword.keyword [inK, module_nameK, fileK, checkingK];
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24841
diff changeset
   552
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24841
diff changeset
   553
val _ =
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   554
  Outer_Syntax.command "code_class" "define code syntax for class" Keyword.thy_decl (
37881
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   555
    process_multi_syntax Parse.xname (Scan.option Parse.string)
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   556
    add_class_syntax_cmd);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   557
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24841
diff changeset
   558
val _ =
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   559
  Outer_Syntax.command "code_instance" "define code syntax for instance" Keyword.thy_decl (
37881
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   560
    process_multi_syntax (Parse.xname --| Parse.$$$ "::" -- Parse.xname)
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   561
      (Scan.option (Parse.minus >> K ()))
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   562
    add_instance_syntax_cmd);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   563
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24841
diff changeset
   564
val _ =
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   565
  Outer_Syntax.command "code_type" "define code syntax for type constructor" Keyword.thy_decl (
37881
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   566
    process_multi_syntax Parse.xname Code_Printer.parse_tyco_syntax
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   567
    add_tyco_syntax_cmd);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   568
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24841
diff changeset
   569
val _ =
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   570
  Outer_Syntax.command "code_const" "define code syntax for constant" Keyword.thy_decl (
37881
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   571
    process_multi_syntax Parse.term_group Code_Printer.parse_const_syntax
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   572
    add_const_syntax_cmd);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   573
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24841
diff changeset
   574
val _ =
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   575
  Outer_Syntax.command "code_reserved" "declare words as reserved for target language"
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   576
    Keyword.thy_decl (
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   577
    Parse.name -- Scan.repeat1 Parse.name
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   578
    >> (fn (target, reserveds) => (Toplevel.theory o fold (add_reserved target)) reserveds)
24841
df8448bc7a8b concept for exceptions
haftmann
parents: 24811
diff changeset
   579
  );
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   580
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24841
diff changeset
   581
val _ =
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   582
  Outer_Syntax.command "code_include" "declare piece of code to be included in generated code"
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   583
    Keyword.thy_decl (
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   584
    Parse.name -- Parse.name -- (Parse.text :|-- (fn "-" => Scan.succeed NONE
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   585
      | s => Scan.optional (Parse.$$$ "attach" |-- Scan.repeat1 Parse.term) [] >> pair s >> SOME))
28926
530b83967c82 code_include with attach
haftmann
parents: 28690
diff changeset
   586
    >> (fn ((target, name), content_consts) =>
530b83967c82 code_include with attach
haftmann
parents: 28690
diff changeset
   587
        (Toplevel.theory o add_include_cmd target) (name, content_consts))
24992
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   588
  );
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   589
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   590
val _ =
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   591
  Outer_Syntax.command "code_modulename" "alias module to other name" Keyword.thy_decl (
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   592
    Parse.name -- Scan.repeat1 (Parse.name -- Parse.name)
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   593
    >> (fn (target, modlnames) => (Toplevel.theory o fold (add_module_alias target)) modlnames)
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   594
  );
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   595
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   596
val _ =
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   597
  Outer_Syntax.command "code_abort" "permit constant to be implemented as program abort"
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   598
    Keyword.thy_decl (
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   599
    Scan.repeat1 Parse.term_group >> (Toplevel.theory o fold allow_abort_cmd)
24841
df8448bc7a8b concept for exceptions
haftmann
parents: 24811
diff changeset
   600
  );
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   601
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24841
diff changeset
   602
val _ =
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   603
  Outer_Syntax.command "export_code" "generate executable code for constants"
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   604
    Keyword.diag (Parse.!!! code_exprP >> (fn f => Toplevel.keep (f o Toplevel.theory_of)));
30494
c150e6fa4e0d consider exit status of code generation direcitve
haftmann
parents: 30242
diff changeset
   605
c150e6fa4e0d consider exit status of code generation direcitve
haftmann
parents: 30242
diff changeset
   606
fun shell_command thyname cmd = Toplevel.program (fn _ =>
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   607
  (use_thy thyname; case Scan.read Token.stopper (Parse.!!! code_exprP)
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36959
diff changeset
   608
    ((filter Token.is_proper o Outer_Syntax.scan Position.none) cmd)
37863
7f113caabcf4 discontinued pervasive val theory = Thy_Info.get_theory -- prefer antiquotations in most situations;
wenzelm
parents: 37844
diff changeset
   609
   of SOME f => (writeln "Now generating code..."; f (Thy_Info.get_theory thyname))
30494
c150e6fa4e0d consider exit status of code generation direcitve
haftmann
parents: 30242
diff changeset
   610
    | NONE => error ("Bad directive " ^ quote cmd)))
33969
1e7ca47c6c3d dropped some unused bindings
haftmann
parents: 33522
diff changeset
   611
  handle Runtime.TOPLEVEL_ERROR => OS.Process.exit OS.Process.failure;
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   612
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   613
end; (*local*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   614
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   615
end; (*struct*)