src/Tools/Code/code_target.ML
author haftmann
Fri, 24 May 2013 23:57:24 +0200
changeset 52137 7f7337447b1b
parent 52068 1abaea5d5a22
child 52138 e21426f244aa
permissions -rw-r--r--
use generic data for code symbols for unified "code_printing" syntax for custom serialisations
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
39057
c6d146ed07ae manage statement selection for presentation wholly through markup
haftmann
parents: 39056
diff changeset
    11
  val read_const_exprs: theory -> string list -> string list
36471
5aae37575885 exported cert_tyco, read_tyco
haftmann
parents: 36271
diff changeset
    12
38933
bd77e092f67c avoid strange special treatment of empty module names
haftmann
parents: 38929
diff changeset
    13
  val export_code_for: theory -> Path.T option -> string -> int option -> string -> Token.T list
38918
haftmann
parents: 38917
diff changeset
    14
    -> Code_Thingol.naming -> Code_Thingol.program -> string list -> unit
38933
bd77e092f67c avoid strange special treatment of empty module names
haftmann
parents: 38929
diff changeset
    15
  val produce_code_for: theory -> string -> int option -> string -> Token.T list
48568
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 48426
diff changeset
    16
    -> Code_Thingol.naming -> Code_Thingol.program -> string list -> (string * string) list * string option list
38933
bd77e092f67c avoid strange special treatment of empty module names
haftmann
parents: 38929
diff changeset
    17
  val present_code_for: theory -> string -> int option -> string -> Token.T list
38929
d9ac9dee764d distinguish code production and code presentation
haftmann
parents: 38928
diff changeset
    18
    -> Code_Thingol.naming -> Code_Thingol.program -> string list * string list -> string
38918
haftmann
parents: 38917
diff changeset
    19
  val check_code_for: theory -> string -> bool -> Token.T list
haftmann
parents: 38917
diff changeset
    20
    -> Code_Thingol.naming -> Code_Thingol.program -> string list -> unit
haftmann
parents: 38917
diff changeset
    21
haftmann
parents: 38917
diff changeset
    22
  val export_code: theory -> string list
38933
bd77e092f67c avoid strange special treatment of empty module names
haftmann
parents: 38929
diff changeset
    23
    -> (((string * string) * Path.T option) * Token.T list) list -> unit
38929
d9ac9dee764d distinguish code production and code presentation
haftmann
parents: 38928
diff changeset
    24
  val produce_code: theory -> string list
48568
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 48426
diff changeset
    25
    -> string -> int option -> string -> Token.T list -> (string * string) list * string option list
38929
d9ac9dee764d distinguish code production and code presentation
haftmann
parents: 38928
diff changeset
    26
  val present_code: theory -> string list -> (Code_Thingol.naming -> string list)
38933
bd77e092f67c avoid strange special treatment of empty module names
haftmann
parents: 38929
diff changeset
    27
    -> string -> int option -> string -> Token.T list -> string
38918
haftmann
parents: 38917
diff changeset
    28
  val check_code: theory -> string list
haftmann
parents: 38917
diff changeset
    29
    -> ((string * bool) * Token.T list) list -> unit
haftmann
parents: 38917
diff changeset
    30
48568
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 48426
diff changeset
    31
  val generatedN: string
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
    32
  val evaluator: theory -> string -> Code_Thingol.naming -> Code_Thingol.program
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
    33
    -> string list -> ((string * class list) list * Code_Thingol.itype) * Code_Thingol.iterm
48568
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 48426
diff changeset
    34
    -> (string * string) list * string
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
    35
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    36
  type serializer
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    37
  type literals = Code_Printer.literals
37822
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
    38
  val add_target: string * { serializer: serializer, literals: literals,
41940
a3b68a7a0e15 allow spaces in executable names;
wenzelm
parents: 41939
diff changeset
    39
    check: { env_var: string, make_destination: Path.T -> Path.T, make_command: string -> string } }
a3b68a7a0e15 allow spaces in executable names;
wenzelm
parents: 41939
diff changeset
    40
    -> theory -> theory
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28090
diff changeset
    41
  val extend_target: string *
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28090
diff changeset
    42
      (string * (Code_Thingol.naming -> Code_Thingol.program -> Code_Thingol.program))
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    43
    -> theory -> theory
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    44
  val assert_target: theory -> string -> string
38918
haftmann
parents: 38917
diff changeset
    45
  val the_literals: theory -> string -> literals
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    46
  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
    47
  val parse_args: 'a parser -> Token.T list -> 'a
38916
haftmann
parents: 38914
diff changeset
    48
  val serialization: (int -> Path.T option -> 'a -> unit)
48568
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 48426
diff changeset
    49
    -> (string list -> int -> 'a -> (string * string) list * (string -> string option))
38925
ced825abdc1d tuned serializer argument interface
haftmann
parents: 38924
diff changeset
    50
    -> 'a -> serialization
38918
haftmann
parents: 38917
diff changeset
    51
  val set_default_code_width: int -> theory -> theory
38917
haftmann
parents: 38916
diff changeset
    52
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    53
  type ('a, 'b, 'c, 'd, 'e, 'f) symbol_attr_decl
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    54
  type const_syntax = Code_Printer.const_syntax
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    55
  type tyco_syntax = Code_Printer.tyco_syntax
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    56
  val set_printings: (const_syntax, tyco_syntax, string, unit, unit, (string * string list)) symbol_attr_decl
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    57
    -> theory -> theory
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    58
  val add_const_syntax: string -> string -> const_syntax option -> theory -> theory
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    59
  val add_tyco_syntax: string -> string -> tyco_syntax option -> theory -> theory
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
    60
  val add_class_syntax: string -> class -> string option -> theory -> theory
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
    61
  val add_instance_syntax: string -> class * string -> unit option -> theory -> theory
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    62
  val add_reserved: string -> string -> theory -> theory
33969
1e7ca47c6c3d dropped some unused bindings
haftmann
parents: 33522
diff changeset
    63
  val add_include: string -> string * (string * string list) option -> theory -> theory
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    64
  val allow_abort: string -> theory -> theory
39646
64fdbee67135 improved and tuned external codegen tool
haftmann
parents: 39484
diff changeset
    65
39750
c0099428ca7b consider quick_and_dirty option before loading theory
haftmann
parents: 39679
diff changeset
    66
  val codegen_tool: string (*theory name*) -> string (*export_code expr*) -> unit
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
    67
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
    68
  val setup: theory -> theory
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    69
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    70
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    71
structure Code_Target : CODE_TARGET =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    72
struct
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    73
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    74
open Basic_Code_Thingol;
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    75
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    76
type literals = Code_Printer.literals;
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    77
type ('a, 'b, 'c, 'd, 'e, 'f) symbol_attr_decl =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    78
  (string * (string * 'a option) list, string * (string * 'b option) list,
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    79
    class * (string * 'c option) list, (class * class) * (string * 'd option) list,
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    80
    (class * string) * (string * 'e option) list,
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    81
    string * (string * 'f option) list) Code_Symbol.attr;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    82
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    83
type tyco_syntax = Code_Printer.tyco_syntax;
37876
48116a1764c5 consolidate const_syntax naming
haftmann
parents: 37844
diff changeset
    84
type const_syntax = Code_Printer.const_syntax;
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    85
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    86
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    87
(** serializations and serializer **)
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    88
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    89
(* serialization: abstract nonsense to cover different destinies for generated code *)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    90
38929
d9ac9dee764d distinguish code production and code presentation
haftmann
parents: 38928
diff changeset
    91
datatype destination = Export of Path.T option | Produce | Present of string list;
48568
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 48426
diff changeset
    92
type serialization = int -> destination -> ((string * string) list * (string -> string option)) option;
27014
a5f53d9d2b60 yet another attempt to circumvent printmode problems
haftmann
parents: 27001
diff changeset
    93
39659
07549694e2f1 shifted abstraction over imperative print mode
haftmann
parents: 39646
diff changeset
    94
fun serialization output _ content width (Export some_path) =
39661
6381d18507ef reverted cs 07549694e2f1 -- use re-printing with current print mode instead after code assembly, avoid Latex.output_typewriter
haftmann
parents: 39659
diff changeset
    95
      (output width some_path content; NONE)
6381d18507ef reverted cs 07549694e2f1 -- use re-printing with current print mode instead after code assembly, avoid Latex.output_typewriter
haftmann
parents: 39659
diff changeset
    96
  | serialization _ string content width Produce =
6381d18507ef reverted cs 07549694e2f1 -- use re-printing with current print mode instead after code assembly, avoid Latex.output_typewriter
haftmann
parents: 39659
diff changeset
    97
      string [] width content |> SOME
39659
07549694e2f1 shifted abstraction over imperative print mode
haftmann
parents: 39646
diff changeset
    98
  | serialization _ string content width (Present stmt_names) =
39661
6381d18507ef reverted cs 07549694e2f1 -- use re-printing with current print mode instead after code assembly, avoid Latex.output_typewriter
haftmann
parents: 39659
diff changeset
    99
     string stmt_names width content
48568
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 48426
diff changeset
   100
     |> (apfst o map o apsnd) (Pretty.output (SOME width) o Pretty.str)
39661
6381d18507ef reverted cs 07549694e2f1 -- use re-printing with current print mode instead after code assembly, avoid Latex.output_typewriter
haftmann
parents: 39659
diff changeset
   101
     |> SOME;
39659
07549694e2f1 shifted abstraction over imperative print mode
haftmann
parents: 39646
diff changeset
   102
39661
6381d18507ef reverted cs 07549694e2f1 -- use re-printing with current print mode instead after code assembly, avoid Latex.output_typewriter
haftmann
parents: 39659
diff changeset
   103
fun export some_path f = (f (Export some_path); ());
6381d18507ef reverted cs 07549694e2f1 -- use re-printing with current print mode instead after code assembly, avoid Latex.output_typewriter
haftmann
parents: 39659
diff changeset
   104
fun produce f = the (f Produce);
48568
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 48426
diff changeset
   105
fun present stmt_names f = space_implode "\n\n" (map snd (fst (the (f (Present stmt_names)))));
38917
haftmann
parents: 38916
diff changeset
   106
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   107
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   108
(* serializers: functions producing serializations *)
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   109
39142
f63715f00fdd dropped names from serializer interface
haftmann
parents: 39102
diff changeset
   110
type serializer = Token.T list
f63715f00fdd dropped names from serializer interface
haftmann
parents: 39102
diff changeset
   111
  -> {
38926
24f82786cc57 record argument for serializers
haftmann
parents: 38925
diff changeset
   112
    labelled_name: string -> string,
24f82786cc57 record argument for serializers
haftmann
parents: 38925
diff changeset
   113
    reserved_syms: string list,
24f82786cc57 record argument for serializers
haftmann
parents: 38925
diff changeset
   114
    includes: (string * Pretty.T) list,
24f82786cc57 record argument for serializers
haftmann
parents: 38925
diff changeset
   115
    module_alias: string -> string option,
24f82786cc57 record argument for serializers
haftmann
parents: 38925
diff changeset
   116
    class_syntax: string -> string option,
24f82786cc57 record argument for serializers
haftmann
parents: 38925
diff changeset
   117
    tyco_syntax: string -> Code_Printer.tyco_syntax option,
41342
3519e0dd8f75 more explicit structure for serializer invocation
haftmann
parents: 41307
diff changeset
   118
    const_syntax: string -> Code_Printer.activated_const_syntax option }
3519e0dd8f75 more explicit structure for serializer invocation
haftmann
parents: 41307
diff changeset
   119
  -> Code_Thingol.program
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   120
  -> serialization;
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   121
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   122
datatype description =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   123
    Fundamental of { serializer: serializer,
38910
6af1d8673cbf width is a formal parameter of serialization
haftmann
parents: 38909
diff changeset
   124
      literals: literals,
37822
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
   125
      check: { env_var: string, make_destination: Path.T -> Path.T,
41940
a3b68a7a0e15 allow spaces in executable names;
wenzelm
parents: 41939
diff changeset
   126
        make_command: string -> string } }
38909
919c924067f3 whitespace tuning
haftmann
parents: 38908
diff changeset
   127
  | Extension of string *
919c924067f3 whitespace tuning
haftmann
parents: 38908
diff changeset
   128
      (Code_Thingol.naming -> Code_Thingol.program -> Code_Thingol.program);
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   129
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   130
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   131
(** theory data **)
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   132
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   133
datatype target = Target of {
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   134
  serial: serial,
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   135
  description: description,
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   136
  reserved: string list,
38925
ced825abdc1d tuned serializer argument interface
haftmann
parents: 38924
diff changeset
   137
  module_alias: string Symtab.table,
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   138
  printings: (Code_Printer.const_syntax, Code_Printer.tyco_syntax, string, unit, unit,
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   139
    (Pretty.T * string list)) Code_Symbol.data
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   140
};
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   141
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   142
fun make_target ((serial, description), ((reserved, module_alias), printings)) =
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   143
  Target { serial = serial, description = description, reserved = reserved,
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   144
    module_alias = module_alias, printings = printings };
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   145
fun map_target f ( Target { serial, description, reserved, module_alias, printings } ) =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   146
  make_target (f ((serial, description), ((reserved, module_alias), printings)));
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   147
fun merge_target strict target (Target { serial = serial1, description = description,
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   148
  reserved = reserved1, module_alias = module_alias1, printings = printings1 },
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   149
    Target { serial = serial2, description = _,
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   150
      reserved = reserved2, module_alias = module_alias2, printings = printings2 }) =
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   151
  if serial1 = serial2 orelse not strict then
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   152
    make_target ((serial1, description),
50768
2172f82de515 tuned -- prefer high-level Table.merge with its slightly more conservative update;
wenzelm
parents: 48568
diff changeset
   153
      ((merge (op =) (reserved1, reserved2),
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   154
         Symtab.join (K snd) (module_alias1, module_alias2)),
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   155
        (Code_Symbol.merge_data (printings1, printings2))
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   156
    ))
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   157
  else
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   158
    error ("Incompatible targets: " ^ quote target);
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   159
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   160
fun the_description (Target { description, ... }) = description;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   161
fun the_reserved (Target { reserved, ... }) = reserved;
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   162
fun the_module_alias (Target { module_alias , ... }) = module_alias;
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   163
fun the_printings (Target { printings, ... }) = printings;
27437
727297fcf7c8 cached code for code antiquotation
haftmann
parents: 27436
diff changeset
   164
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   165
structure Targets = Theory_Data
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   166
(
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   167
  type T = (target Symtab.table * string list) * int;
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   168
  val empty = ((Symtab.empty, []), 80);
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   169
  val extend = I;
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   170
  fun merge (((target1, exc1), width1), ((target2, exc2), width2)) : T =
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   171
    ((Symtab.join (merge_target true) (target1, target2),
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   172
      Library.merge (op =) (exc1, exc2)), Int.max (width1, width2));
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   173
);
27436
9581777503e9 code antiquotation roaring ahead
haftmann
parents: 27372
diff changeset
   174
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   175
val abort_allowed = snd o fst o Targets.get;
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   176
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   177
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
   178
  then target
1e7ca47c6c3d dropped some unused bindings
haftmann
parents: 33522
diff changeset
   179
  else error ("Unknown code target language: " ^ quote target);
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   180
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   181
fun put_target (target, seri) thy =
27304
720c8115d723 explicit thm context for error messages
haftmann
parents: 27103
diff changeset
   182
  let
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   183
    val lookup_target = Symtab.lookup ((fst o fst) (Targets.get thy));
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   184
    val _ = case seri
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   185
     of Extension (super, _) => if is_some (lookup_target super) then ()
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   186
          else error ("Unknown code target language: " ^ quote super)
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   187
      | _ => ();
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   188
    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
   189
     of NONE => false
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   190
      | SOME (Extension _) => true
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   191
      | SOME (Fundamental _) => (case seri
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   192
         of Extension _ => error ("Will not overwrite existing target " ^ quote target)
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28090
diff changeset
   193
          | _ => true);
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28090
diff changeset
   194
    val _ = if overwriting
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   195
      then warning ("Overwriting existing target " ^ quote target)
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   196
      else ();
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   197
  in
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   198
    thy
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   199
    |> (Targets.map o apfst o apfst o Symtab.update)
31599
97b4d289c646 tuned make/map/merge combinators
haftmann
parents: 31156
diff changeset
   200
          (target, make_target ((serial (), seri), (([], Symtab.empty),
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   201
            Code_Symbol.empty_data)))
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   202
  end;
27436
9581777503e9 code antiquotation roaring ahead
haftmann
parents: 27372
diff changeset
   203
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   204
fun add_target (target, seri) = put_target (target, Fundamental seri);
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   205
fun extend_target (target, (super, modify)) =
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   206
  put_target (target, Extension (super, modify));
27436
9581777503e9 code antiquotation roaring ahead
haftmann
parents: 27372
diff changeset
   207
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   208
fun map_target_data target f thy =
27436
9581777503e9 code antiquotation roaring ahead
haftmann
parents: 27372
diff changeset
   209
  let
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   210
    val _ = assert_target thy target;
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   211
  in
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   212
    thy
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   213
    |> (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
   214
  end;
27304
720c8115d723 explicit thm context for error messages
haftmann
parents: 27103
diff changeset
   215
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   216
fun map_reserved target =
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   217
  map_target_data target o apsnd o apfst o apfst;
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   218
fun map_module_alias target =
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   219
  map_target_data target o apsnd o apfst o apsnd;
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   220
fun map_printings target =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   221
  map_target_data target o apsnd o apsnd;
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   222
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   223
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
   224
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   225
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   226
(** serializer usage **)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   227
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   228
(* montage *)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   229
37822
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
   230
fun the_fundamental thy =
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   231
  let
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   232
    val ((targets, _), _) = Targets.get thy;
37822
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
   233
    fun fundamental target = case Symtab.lookup targets target
37821
3cbb22cec751 formal slot for code checker
haftmann
parents: 37819
diff changeset
   234
     of SOME data => (case the_description data
37822
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
   235
         of Fundamental data => data
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
   236
          | Extension (super, _) => fundamental super)
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   237
      | NONE => error ("Unknown code target language: " ^ quote target);
37822
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
   238
  in fundamental end;
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
   239
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
   240
fun the_literals thy = #literals o the_fundamental thy;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   241
39817
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   242
fun collapse_hierarchy thy =
38927
haftmann
parents: 38926
diff changeset
   243
  let
39817
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   244
    val ((targets, _), _) = Targets.get thy;
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   245
    fun collapse target =
38927
haftmann
parents: 38926
diff changeset
   246
      let
haftmann
parents: 38926
diff changeset
   247
        val data = case Symtab.lookup targets target
haftmann
parents: 38926
diff changeset
   248
         of SOME data => data
haftmann
parents: 38926
diff changeset
   249
          | NONE => error ("Unknown code target language: " ^ quote target);
haftmann
parents: 38926
diff changeset
   250
      in case the_description data
39484
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   251
       of Fundamental _ => (K I, data)
38927
haftmann
parents: 38926
diff changeset
   252
        | Extension (super, modify) => let
39817
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   253
            val (modify', data') = collapse super
39484
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   254
          in (fn naming => modify' naming #> modify naming, merge_target false target (data', data)) end
38927
haftmann
parents: 38926
diff changeset
   255
      end;
39817
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   256
  in collapse end;
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   257
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   258
local
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   259
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   260
fun activate_target thy target =
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   261
  let
47576
b32aae03e3d6 dropped dead code;
haftmann
parents: 47089
diff changeset
   262
    val ((_, abortable), default_width) = Targets.get thy;
39817
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   263
    val (modify, data) = collapse_hierarchy thy target;
39484
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   264
  in (default_width, abortable, data, modify) end;
38927
haftmann
parents: 38926
diff changeset
   265
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   266
fun activate_const_syntax thy literals cs_data naming =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   267
  (Symtab.empty, naming)
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   268
  |> fold_map (fn (c, data) => fn (tab, naming) =>
37881
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   269
      case Code_Thingol.lookup_const naming c
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   270
       of SOME name => let
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   271
              val (syn, naming') =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   272
                Code_Printer.activate_const_syntax thy literals c data naming
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   273
            in (SOME name, (Symtab.update_new (name, syn) tab, naming')) end
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   274
        | NONE => (NONE, (tab, naming))) cs_data
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   275
  |>> map_filter I;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   276
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   277
fun activate_syntax lookup_name things =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   278
  Symtab.empty
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   279
  |> fold_map (fn (thing_identifier, data) => fn tab => case lookup_name thing_identifier
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   280
       of SOME name => (SOME name, Symtab.update_new (name, data) tab)
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   281
        | NONE => (NONE, tab)) things
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   282
  |>> map_filter I;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   283
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   284
fun activate_symbol_syntax thy literals naming printings =
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   285
  let
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   286
    val (names_const, (const_syntax, _)) =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   287
      activate_const_syntax thy literals (Code_Symbol.dest_constant_data printings) naming;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   288
    val (names_tyco, tyco_syntax) =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   289
      activate_syntax (Code_Thingol.lookup_tyco naming) (Code_Symbol.dest_type_constructor_data printings);
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   290
    val (names_class, class_syntax) =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   291
      activate_syntax (Code_Thingol.lookup_class naming) (Code_Symbol.dest_type_class_data printings);
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   292
    val names_inst = map_filter (Code_Thingol.lookup_instance naming o fst)
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   293
      (Code_Symbol.dest_class_instance_data printings);
38927
haftmann
parents: 38926
diff changeset
   294
  in
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   295
    (names_const @ names_tyco @ names_class @ names_inst,
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   296
      (const_syntax, tyco_syntax, class_syntax))
38927
haftmann
parents: 38926
diff changeset
   297
  end;
haftmann
parents: 38926
diff changeset
   298
haftmann
parents: 38926
diff changeset
   299
fun project_program thy abortable names_hidden names1 program2 =
haftmann
parents: 38926
diff changeset
   300
  let
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   301
    val ctxt = Proof_Context.init_global thy;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   302
    val names2 = subtract (op =) names_hidden names1;
46614
165886a4fe64 clarified Graph.restrict (formerly Graph.subgraph) based on public graph operations;
wenzelm
parents: 44751
diff changeset
   303
    val program3 = Graph.restrict (not o member (op =) names_hidden) program2;
38936
5cdba14d20fa repaired casual accident; tuned names
haftmann
parents: 38933
diff changeset
   304
    val names4 = Graph.all_succs program3 names2;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   305
    val empty_funs = filter_out (member (op =) abortable)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   306
      (Code_Thingol.empty_funs program3);
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41940
diff changeset
   307
    val _ =
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41940
diff changeset
   308
      if null empty_funs then ()
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41940
diff changeset
   309
      else error ("No code equations for " ^
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   310
        commas (map (Proof_Context.extern_const ctxt) empty_funs));
46614
165886a4fe64 clarified Graph.restrict (formerly Graph.subgraph) based on public graph operations;
wenzelm
parents: 44751
diff changeset
   311
    val program4 = Graph.restrict (member (op =) names4) program3;
38936
5cdba14d20fa repaired casual accident; tuned names
haftmann
parents: 38933
diff changeset
   312
  in (names4, program4) end;
38927
haftmann
parents: 38926
diff changeset
   313
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   314
fun prepare_serializer thy abortable (serializer : serializer) literals reserved module_alias
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   315
    printings module_name args naming proto_program names =
38927
haftmann
parents: 38926
diff changeset
   316
  let
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   317
    val (names_hidden, (const_syntax, tyco_syntax, class_syntax)) =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   318
      activate_symbol_syntax thy literals naming printings;
38927
haftmann
parents: 38926
diff changeset
   319
    val (names_all, program) = project_program thy abortable names_hidden names proto_program;
39484
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   320
    fun select_include (name, (content, cs)) =
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   321
      if null cs orelse exists (fn c => case Code_Thingol.lookup_const naming c
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   322
       of SOME name => member (op =) names_all name
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   323
        | NONE => false) cs
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   324
      then SOME (name, content) else NONE;
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   325
    val includes = map_filter select_include (Code_Symbol.dest_module_data printings);
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   326
  in
41342
3519e0dd8f75 more explicit structure for serializer invocation
haftmann
parents: 41307
diff changeset
   327
    (serializer args {
38927
haftmann
parents: 38926
diff changeset
   328
      labelled_name = Code_Thingol.labelled_name thy proto_program,
38926
24f82786cc57 record argument for serializers
haftmann
parents: 38925
diff changeset
   329
      reserved_syms = reserved,
24f82786cc57 record argument for serializers
haftmann
parents: 38925
diff changeset
   330
      includes = includes,
38933
bd77e092f67c avoid strange special treatment of empty module names
haftmann
parents: 38929
diff changeset
   331
      module_alias = if module_name = "" then Symtab.lookup module_alias else K (SOME module_name),
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   332
      const_syntax = Symtab.lookup const_syntax,
38927
haftmann
parents: 38926
diff changeset
   333
      tyco_syntax = Symtab.lookup tyco_syntax,
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   334
      class_syntax = Symtab.lookup class_syntax },
41342
3519e0dd8f75 more explicit structure for serializer invocation
haftmann
parents: 41307
diff changeset
   335
      program)
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   336
  end;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   337
41342
3519e0dd8f75 more explicit structure for serializer invocation
haftmann
parents: 41307
diff changeset
   338
fun mount_serializer thy target some_width module_name args naming program names =
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   339
  let
39484
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   340
    val (default_width, abortable, data, modify) = activate_target thy target;
38921
15f8cffdbf5d dropped legacy interfaces
haftmann
parents: 38918
diff changeset
   341
    val serializer = case the_description data
38927
haftmann
parents: 38926
diff changeset
   342
     of Fundamental seri => #serializer seri;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   343
    val reserved = the_reserved data;
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   344
    val module_alias = the_module_alias data
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   345
    val literals = the_literals thy target;
41342
3519e0dd8f75 more explicit structure for serializer invocation
haftmann
parents: 41307
diff changeset
   346
    val (prepared_serializer, prepared_program) = prepare_serializer thy
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   347
      abortable serializer literals reserved module_alias (the_printings data)
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   348
        module_name args naming (modify naming program) names
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   349
    val width = the_default default_width some_width;
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   350
  in (fn program => prepared_serializer program width, prepared_program) end;
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   351
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   352
fun invoke_serializer thy target some_width module_name args naming program names =
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   353
  let
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   354
    val (mounted_serializer, prepared_program) = mount_serializer thy
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   355
      target some_width module_name args naming program names;
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   356
  in mounted_serializer prepared_program end;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   357
38933
bd77e092f67c avoid strange special treatment of empty module names
haftmann
parents: 38929
diff changeset
   358
fun assert_module_name "" = error ("Empty module name not allowed.")
bd77e092f67c avoid strange special treatment of empty module names
haftmann
parents: 38929
diff changeset
   359
  | assert_module_name module_name = module_name;
bd77e092f67c avoid strange special treatment of empty module names
haftmann
parents: 38929
diff changeset
   360
48426
7b03314ee2ac also consider current working directory (cf. 3a5a5a992519)
haftmann
parents: 48371
diff changeset
   361
fun using_master_directory thy =
7b03314ee2ac also consider current working directory (cf. 3a5a5a992519)
haftmann
parents: 48371
diff changeset
   362
  Option.map (Path.append (File.pwd ()) o Path.append (Thy_Load.master_directory thy));
48371
3a5a5a992519 export code relatively to master directory
haftmann
parents: 47576
diff changeset
   363
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   364
in
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   365
48568
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 48426
diff changeset
   366
val generatedN = "Generated_Code";
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 48426
diff changeset
   367
39484
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   368
fun export_code_for thy some_path target some_width module_name args =
48371
3a5a5a992519 export code relatively to master directory
haftmann
parents: 47576
diff changeset
   369
  export (using_master_directory thy some_path)
3a5a5a992519 export code relatively to master directory
haftmann
parents: 47576
diff changeset
   370
  ooo invoke_serializer thy target some_width module_name args;
38918
haftmann
parents: 38917
diff changeset
   371
39484
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   372
fun produce_code_for thy target some_width module_name args =
39102
4ae1d212100f hand out deresolver from serializer invocation
haftmann
parents: 39058
diff changeset
   373
  let
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   374
    val serializer = invoke_serializer thy target some_width (assert_module_name module_name) args;
39484
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   375
  in fn naming => fn program => fn names =>
39661
6381d18507ef reverted cs 07549694e2f1 -- use re-printing with current print mode instead after code assembly, avoid Latex.output_typewriter
haftmann
parents: 39659
diff changeset
   376
    produce (serializer naming program names) |> apsnd (fn deresolve => map deresolve names)
39484
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   377
  end;
38929
d9ac9dee764d distinguish code production and code presentation
haftmann
parents: 38928
diff changeset
   378
39484
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   379
fun present_code_for thy target some_width module_name args =
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   380
  let
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   381
    val serializer = invoke_serializer thy target some_width (assert_module_name module_name) args;
39484
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   382
  in fn naming => fn program => fn (names, selects) =>
39661
6381d18507ef reverted cs 07549694e2f1 -- use re-printing with current print mode instead after code assembly, avoid Latex.output_typewriter
haftmann
parents: 39659
diff changeset
   383
    present selects (serializer naming program names)
39484
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   384
  end;
38918
haftmann
parents: 38917
diff changeset
   385
haftmann
parents: 38917
diff changeset
   386
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
   387
  let
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   388
    val { env_var, make_destination, make_command } =
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   389
      (#check o the_fundamental thy) target;
41939
wenzelm
parents: 41364
diff changeset
   390
    fun ext_check p =
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   391
      let
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   392
        val destination = make_destination p;
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   393
        val _ = export (SOME destination) (invoke_serializer thy target (SOME 80)
48568
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 48426
diff changeset
   394
          generatedN args naming program names_cs);
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 48426
diff changeset
   395
        val cmd = make_command generatedN;
43850
7f2cbc713344 moved bash operations to Isabelle_System (cf. Scala version);
wenzelm
parents: 43564
diff changeset
   396
      in
7f2cbc713344 moved bash operations to Isabelle_System (cf. Scala version);
wenzelm
parents: 43564
diff changeset
   397
        if Isabelle_System.bash ("cd " ^ File.shell_path p ^ " && " ^ cmd ^ " 2>&1") <> 0
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   398
        then error ("Code check failed for " ^ target ^ ": " ^ cmd)
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   399
        else ()
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   400
      end;
43850
7f2cbc713344 moved bash operations to Isabelle_System (cf. Scala version);
wenzelm
parents: 43564
diff changeset
   401
  in
7f2cbc713344 moved bash operations to Isabelle_System (cf. Scala version);
wenzelm
parents: 43564
diff changeset
   402
    if getenv env_var = ""
37825
adc1143bc1a8 explicit optional checking
haftmann
parents: 37824
diff changeset
   403
    then if strict
adc1143bc1a8 explicit optional checking
haftmann
parents: 37824
diff changeset
   404
      then error (env_var ^ " not set; cannot check code for " ^ target)
adc1143bc1a8 explicit optional checking
haftmann
parents: 37824
diff changeset
   405
      else warning (env_var ^ " not set; skipped checking code for " ^ target)
41939
wenzelm
parents: 41364
diff changeset
   406
    else Isabelle_System.with_tmp_dir "Code_Test" ext_check
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   407
  end;
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   408
41364
aaf5968c67ef tuned names
haftmann
parents: 41351
diff changeset
   409
fun evaluation mounted_serializer prepared_program consts ((vs, ty), t) =
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   410
  let
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   411
    val _ = if Code_Thingol.contains_dict_var t then
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   412
      error "Term to be evaluated contains free dictionaries" else ();
43324
2b47822868e4 discontinued Name.variant to emphasize that this is old-style / indirect;
wenzelm
parents: 42361
diff changeset
   413
    val v' = singleton (Name.variant_list (map fst vs)) "a";
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   414
    val vs' = (v', []) :: vs;
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   415
    val ty' = Code_Thingol.fun_tyco `%% [ITyVar v', ty];
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   416
    val value_name = "Value.value.value"
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   417
    val program = prepared_program
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   418
      |> Graph.new_node (value_name,
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   419
          Code_Thingol.Fun (Term.dummy_patternN, (((vs', ty'), [(([IVar NONE], t), (NONE, true))]), NONE)))
41364
aaf5968c67ef tuned names
haftmann
parents: 41351
diff changeset
   420
      |> fold (curry (perhaps o try o Graph.add_edge) value_name) consts;
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   421
    val (program_code, deresolve) = produce (mounted_serializer program);
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   422
    val value_name' = the (deresolve value_name);
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   423
  in (program_code, value_name') end;
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   424
41364
aaf5968c67ef tuned names
haftmann
parents: 41351
diff changeset
   425
fun evaluator thy target naming program consts =
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   426
  let
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   427
    val (mounted_serializer, prepared_program) = mount_serializer thy
48568
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 48426
diff changeset
   428
      target NONE generatedN [] naming program consts;
41364
aaf5968c67ef tuned names
haftmann
parents: 41351
diff changeset
   429
  in evaluation mounted_serializer prepared_program consts end;
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   430
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   431
end; (* local *)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   432
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   433
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   434
(* code generation *)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   435
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   436
fun transitivly_non_empty_funs thy naming program =
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   437
  let
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   438
    val cs = subtract (op =) (abort_allowed thy) (Code_Thingol.empty_funs program);
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   439
    val names = map_filter (Code_Thingol.lookup_const naming) cs;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   440
  in subtract (op =) (Graph.all_preds program names) (Graph.keys program) end;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   441
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   442
fun read_const_exprs thy cs =
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   443
  let
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   444
    val (cs1, cs2) = Code_Thingol.read_const_exprs thy cs;
36271
2ef9dbddfcb8 optionally ignore errors during translation of equations
haftmann
parents: 36121
diff changeset
   445
    val (names2, (naming, program)) = Code_Thingol.consts_program thy true cs2;
2ef9dbddfcb8 optionally ignore errors during translation of equations
haftmann
parents: 36121
diff changeset
   446
    val names3 = transitivly_non_empty_funs thy naming program;
2ef9dbddfcb8 optionally ignore errors during translation of equations
haftmann
parents: 36121
diff changeset
   447
    val cs3 = map_filter (fn (c, name) =>
2ef9dbddfcb8 optionally ignore errors during translation of equations
haftmann
parents: 36121
diff changeset
   448
      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
   449
  in union (op =) cs3 cs1 end;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   450
38918
haftmann
parents: 38917
diff changeset
   451
fun prep_destination "" = NONE
haftmann
parents: 38917
diff changeset
   452
  | prep_destination "-" = NONE
haftmann
parents: 38917
diff changeset
   453
  | prep_destination s = SOME (Path.explode s);
haftmann
parents: 38917
diff changeset
   454
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   455
fun export_code thy cs seris =
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   456
  let
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   457
    val (names_cs, (naming, program)) = Code_Thingol.consts_program thy false cs;
38918
haftmann
parents: 38917
diff changeset
   458
    val _ = map (fn (((target, module_name), some_path), args) =>
haftmann
parents: 38917
diff changeset
   459
      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
   460
  in () end;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   461
38918
haftmann
parents: 38917
diff changeset
   462
fun export_code_cmd raw_cs seris thy = export_code thy (read_const_exprs thy raw_cs)
haftmann
parents: 38917
diff changeset
   463
  ((map o apfst o apsnd) prep_destination seris);
haftmann
parents: 38917
diff changeset
   464
38929
d9ac9dee764d distinguish code production and code presentation
haftmann
parents: 38928
diff changeset
   465
fun produce_code thy cs target some_width some_module_name args =
38918
haftmann
parents: 38917
diff changeset
   466
  let
haftmann
parents: 38917
diff changeset
   467
    val (names_cs, (naming, program)) = Code_Thingol.consts_program thy false cs;
38929
d9ac9dee764d distinguish code production and code presentation
haftmann
parents: 38928
diff changeset
   468
  in produce_code_for thy target some_width some_module_name args naming program names_cs end;
d9ac9dee764d distinguish code production and code presentation
haftmann
parents: 38928
diff changeset
   469
d9ac9dee764d distinguish code production and code presentation
haftmann
parents: 38928
diff changeset
   470
fun present_code thy cs names_stmt target some_width some_module_name args =
d9ac9dee764d distinguish code production and code presentation
haftmann
parents: 38928
diff changeset
   471
  let
d9ac9dee764d distinguish code production and code presentation
haftmann
parents: 38928
diff changeset
   472
    val (names_cs, (naming, program)) = Code_Thingol.consts_program thy false cs;
d9ac9dee764d distinguish code production and code presentation
haftmann
parents: 38928
diff changeset
   473
  in present_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
   474
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   475
fun check_code thy cs seris =
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   476
  let
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   477
    val (names_cs, (naming, program)) = Code_Thingol.consts_program thy false cs;
38918
haftmann
parents: 38917
diff changeset
   478
    val _ = map (fn ((target, strict), args) =>
haftmann
parents: 38917
diff changeset
   479
      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
   480
  in () end;
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   481
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   482
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
   483
39480
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   484
local
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   485
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   486
val parse_const_terms = Scan.repeat1 Args.term
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   487
  >> (fn ts => fn thy => map (Code.check_const thy) ts);
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   488
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   489
fun parse_names category parse internalize lookup =
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   490
  Scan.lift (Args.parens (Args.$$$ category)) |-- Scan.repeat1 parse
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   491
  >> (fn xs => fn thy => fn naming => map_filter (lookup naming o internalize thy) xs);
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   492
39480
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   493
val parse_consts = parse_names "consts" Args.term
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   494
  Code.check_const Code_Thingol.lookup_const ;
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   495
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   496
val parse_types = parse_names "types" (Scan.lift Args.name)
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   497
  Sign.intern_type Code_Thingol.lookup_tyco;
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   498
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   499
val parse_classes = parse_names "classes" (Scan.lift Args.name)
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   500
  Sign.intern_class Code_Thingol.lookup_class;
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   501
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   502
val parse_instances = parse_names "instances" (Scan.lift (Args.name --| Args.$$$ "::" -- Args.name))
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   503
  (fn thy => fn (raw_tyco, raw_class) => (Sign.intern_class thy raw_class, Sign.intern_type thy raw_tyco))
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   504
    Code_Thingol.lookup_instance;
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   505
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   506
in
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   507
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   508
val antiq_setup =
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   509
  Thy_Output.antiquotation @{binding code_stmts}
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   510
    (parse_const_terms --
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   511
      Scan.repeat (parse_consts || parse_types || parse_classes || parse_instances)
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   512
      -- Scan.lift (Args.parens (Args.name -- Scan.option Parse.int)))
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   513
    (fn {context = ctxt, ...} => fn ((mk_cs, mk_stmtss), (target, some_width)) =>
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   514
      let val thy = Proof_Context.theory_of ctxt in
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   515
        present_code thy (mk_cs thy)
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   516
          (fn naming => maps (fn f => f thy naming) mk_stmtss)
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   517
          target some_width "Example" []
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   518
      end);
39480
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   519
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   520
end;
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   521
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   522
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   523
(** serializer configuration **)
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   524
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   525
(* checking and parsing *)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   526
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   527
fun cert_const thy const =
24992
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   528
  let
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   529
    val _ = if Sign.declared_const thy const then ()
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   530
      else error ("No such constant: " ^ quote const);
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   531
  in const end;
24992
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   532
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   533
fun cert_tyco thy tyco =
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   534
  let
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   535
    val _ = if Sign.declared_tyname thy tyco then ()
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   536
      else error ("No such type constructor: " ^ quote tyco);
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   537
  in tyco end;
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   538
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   539
fun read_tyco thy = cert_tyco thy o Sign.intern_type thy;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   540
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   541
fun cert_class thy class =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   542
  let
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   543
    val _ = Axclass.get_info thy class;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   544
  in class end;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   545
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   546
fun read_class thy = cert_class thy o Sign.intern_class thy;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   547
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   548
val parse_classrel_ident = Parse.class --| @{keyword "<"} -- Parse.class;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   549
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   550
fun cert_inst thy (class, tyco) =
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   551
  (cert_class thy class, cert_tyco thy tyco);
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   552
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   553
fun read_inst thy (raw_tyco, raw_class) =
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   554
  (read_class thy raw_class, read_tyco thy raw_tyco);
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   555
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   556
val parse_inst_ident = Parse.xname --| @{keyword "::"} -- Parse.class;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   557
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   558
fun cert_syms thy =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   559
  Code_Symbol.map_attr (apfst (cert_const thy)) (apfst (cert_tyco thy))
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   560
    (apfst (cert_class thy)) ((apfst o pairself) (cert_class thy)) (apfst (cert_inst thy)) I;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   561
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   562
fun read_syms thy =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   563
  Code_Symbol.map_attr (apfst (Code.read_const thy)) (apfst (read_tyco thy))
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   564
    (apfst (read_class thy)) ((apfst o pairself) (read_class thy)) (apfst (read_inst thy)) I;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   565
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   566
fun check_const_syntax thy c syn =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   567
  if Code_Printer.requires_args syn > Code.args_number thy c
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   568
  then error ("Too many arguments in syntax for constant " ^ quote c)
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   569
  else syn;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   570
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   571
fun check_tyco_syntax thy tyco syn =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   572
  if fst syn <> Sign.arity_number thy tyco
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   573
  then error ("Number of arguments mismatch in syntax for type constructor " ^ quote tyco)
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   574
  else syn;
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   575
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   576
fun arrange_printings prep_const thy =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   577
  let
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   578
    fun arrange check (sym, target_syns) =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   579
      map (fn (target, some_syn) => (target, (sym, Option.map (check thy sym) some_syn))) target_syns;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   580
  in
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   581
    Code_Symbol.maps_attr'
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   582
      (arrange check_const_syntax) (arrange check_tyco_syntax)
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   583
        (arrange ((K o K) I)) (arrange ((K o K) I)) (arrange ((K o K) I))
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   584
        (arrange (fn thy => fn _ => fn (raw_content, raw_cs) =>
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   585
          (Code_Printer.str raw_content, map (prep_const thy) raw_cs)))
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   586
  end;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   587
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   588
fun cert_printings thy = cert_syms thy #> arrange_printings cert_const thy;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   589
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   590
fun read_printings thy = read_syms thy #> arrange_printings Code.read_const thy;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   591
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   592
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   593
(* custom symbol names *)
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   594
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   595
fun add_module_alias target (thyname, "") =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   596
      map_module_alias target (Symtab.delete thyname)
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   597
  | add_module_alias target (thyname, modlname) =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   598
      let
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   599
        val xs = Long_Name.explode modlname;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   600
        val xs' = map (Name.desymbolize true) xs;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   601
      in if xs' = xs
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   602
        then map_module_alias target (Symtab.update (thyname, modlname))
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   603
        else error ("Invalid module name: " ^ quote modlname ^ "\n"
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   604
          ^ "perhaps try " ^ quote (Long_Name.implode xs'))
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   605
      end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   606
39817
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   607
fun add_reserved target sym thy =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   608
  let
39817
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   609
    val (_, data) = collapse_hierarchy thy target;
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   610
    val _ = if member (op =) (the_reserved data) sym
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   611
      then error ("Reserved symbol " ^ quote sym ^ " already declared")
39817
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   612
      else ();
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   613
  in
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   614
    thy
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   615
    |> map_reserved target (insert (op =) sym)
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   616
  end;
24992
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   617
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   618
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   619
(* custom printings *)
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   620
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   621
fun set_printing (target, sym_syn) = map_printings target (Code_Symbol.set_data sym_syn);
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   622
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   623
fun gen_set_printings prep_print_decl raw_print_decls thy =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   624
  fold set_printing (prep_print_decl thy raw_print_decls) thy;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   625
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   626
val set_printings = gen_set_printings cert_printings;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   627
val set_printings_cmd = gen_set_printings read_printings;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   628
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   629
fun gen_add_syntax Symbol prep_x prep_syn target raw_x some_raw_syn thy =
24992
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   630
  let
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   631
    val x = prep_x thy raw_x;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   632
  in set_printing (target, Symbol (x, Option.map (prep_syn thy x) some_raw_syn)) thy end;
28926
530b83967c82 code_include with attach
haftmann
parents: 28690
diff changeset
   633
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   634
fun gen_add_const_syntax prep_const =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   635
  gen_add_syntax Code_Symbol.Constant prep_const check_const_syntax;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   636
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   637
fun gen_add_tyco_syntax prep_tyco =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   638
  gen_add_syntax Code_Symbol.Type_Constructor prep_tyco check_tyco_syntax;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   639
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   640
fun gen_add_class_syntax prep_class =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   641
  gen_add_syntax Code_Symbol.Type_Class prep_class ((K o K) I);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   642
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   643
fun gen_add_instance_syntax prep_inst =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   644
  gen_add_syntax Code_Symbol.Class_Instance prep_inst ((K o K) I);
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   645
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   646
fun gen_add_include prep_const target (name, some_content) thy =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   647
  gen_add_syntax Code_Symbol.Module (K I)
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   648
    (fn thy => fn _ => fn (raw_content, raw_cs) => (Code_Printer.str raw_content, map (prep_const thy) raw_cs))
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   649
    target name some_content thy;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   650
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   651
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   652
(* abortable constants *)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   653
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28090
diff changeset
   654
fun gen_allow_abort prep_const raw_c thy =
24841
df8448bc7a8b concept for exceptions
haftmann
parents: 24811
diff changeset
   655
  let
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28090
diff changeset
   656
    val c = prep_const thy raw_c;
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   657
  in thy |> (Targets.map o apfst o apsnd) (insert (op =) c) end;
24841
df8448bc7a8b concept for exceptions
haftmann
parents: 24811
diff changeset
   658
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   659
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   660
(* concrete syntax *)
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   661
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   662
local
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   663
47576
b32aae03e3d6 dropped dead code;
haftmann
parents: 47089
diff changeset
   664
fun zip_list (x :: xs) f g =
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
   665
  f
37881
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   666
  :|-- (fn y =>
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
   667
    fold_map (fn x => g |-- f >> pair x) xs
37881
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   668
    :|-- (fn xys => pair ((x, y) :: xys)));
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
   669
37881
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   670
fun process_multi_syntax parse_thing parse_syntax change =
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   671
  (Parse.and_list1 parse_thing
46949
94aa7b81bcf6 prefer formally checked @{keyword} parser;
wenzelm
parents: 46947
diff changeset
   672
  :|-- (fn things => Scan.repeat1 (@{keyword "("} |-- Parse.name --
52068
1abaea5d5a22 tuned, including signature
haftmann
parents: 51685
diff changeset
   673
        (zip_list things (Scan.option parse_syntax) @{keyword "and"}) --| @{keyword ")"})))
37881
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   674
  >> (Toplevel.theory oo fold)
096c8397c989 distinguish different classes of const syntax
haftmann
parents: 37876
diff changeset
   675
    (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
   676
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   677
in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   678
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   679
val add_reserved = add_reserved;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   680
val add_const_syntax = gen_add_const_syntax (K I);
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   681
val add_tyco_syntax = gen_add_tyco_syntax cert_tyco;
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   682
val add_class_syntax = gen_add_class_syntax cert_class;
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   683
val add_instance_syntax = gen_add_instance_syntax cert_inst;
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   684
val add_include = gen_add_include (K I);
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   685
val allow_abort = gen_allow_abort (K I);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   686
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   687
val add_const_syntax_cmd = gen_add_const_syntax Code.read_const;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   688
val add_tyco_syntax_cmd = gen_add_tyco_syntax read_tyco;
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   689
val add_class_syntax_cmd = gen_add_class_syntax read_class;
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38921
diff changeset
   690
val add_instance_syntax_cmd = gen_add_instance_syntax read_inst;
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   691
val add_include_cmd = gen_add_include Code.read_const;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31056
diff changeset
   692
val allow_abort_cmd = gen_allow_abort Code.read_const;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   693
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   694
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
   695
  case Scan.read Token.stopper f args
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   696
   of SOME x => x
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   697
    | NONE => error "Bad serializer arguments";
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   698
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   699
27304
720c8115d723 explicit thm context for error messages
haftmann
parents: 27103
diff changeset
   700
(** Isar setup **)
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   701
46949
94aa7b81bcf6 prefer formally checked @{keyword} parser;
wenzelm
parents: 46947
diff changeset
   702
val code_expr_argsP = Scan.optional (@{keyword "("} |-- Args.parse --| @{keyword ")"}) [];
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   703
30494
c150e6fa4e0d consider exit status of code generation direcitve
haftmann
parents: 30242
diff changeset
   704
val code_exprP =
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   705
  Scan.repeat1 Parse.term_group :|-- (fn raw_cs =>
46949
94aa7b81bcf6 prefer formally checked @{keyword} parser;
wenzelm
parents: 46947
diff changeset
   706
    ((@{keyword "checking"} |-- Scan.repeat (Parse.name
94aa7b81bcf6 prefer formally checked @{keyword} parser;
wenzelm
parents: 46947
diff changeset
   707
      -- ((@{keyword "?"} |-- Scan.succeed false) || Scan.succeed true) -- code_expr_argsP))
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   708
      >> (fn seris => check_code_cmd raw_cs seris)
46949
94aa7b81bcf6 prefer formally checked @{keyword} parser;
wenzelm
parents: 46947
diff changeset
   709
    || Scan.repeat (@{keyword "in"} |-- Parse.name
94aa7b81bcf6 prefer formally checked @{keyword} parser;
wenzelm
parents: 46947
diff changeset
   710
       -- Scan.optional (@{keyword "module_name"} |-- Parse.name) ""
94aa7b81bcf6 prefer formally checked @{keyword} parser;
wenzelm
parents: 46947
diff changeset
   711
       -- Scan.optional (@{keyword "file"} |-- Parse.name) ""
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   712
       -- code_expr_argsP) >> (fn seris => export_code_cmd raw_cs seris)));
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   713
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   714
fun parse_single_symbol_pragma parse_keyword parse_isa parse_target =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   715
  parse_keyword |-- Parse.!!! parse_isa --| (@{keyword "\<rightharpoonup>"} || @{keyword "=>"})
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   716
    -- Parse.and_list1 (@{keyword "("} |-- (Parse.name --| @{keyword ")"} -- Scan.option parse_target));
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   717
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   718
fun parse_symbol_pragma parse_const parse_tyco parse_class parse_classrel parse_inst parse_module =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   719
  parse_single_symbol_pragma @{keyword "constant"} Parse.term_group parse_const
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   720
    >> Code_Symbol.Constant
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   721
  || parse_single_symbol_pragma @{keyword "type_constructor"} Parse.xname parse_tyco
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   722
    >> Code_Symbol.Type_Constructor
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   723
  || parse_single_symbol_pragma @{keyword "type_class"} Parse.xname parse_class
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   724
    >> Code_Symbol.Type_Class
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   725
  || parse_single_symbol_pragma @{keyword "class_relation"} parse_classrel_ident parse_classrel
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   726
    >> Code_Symbol.Class_Relation
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   727
  || parse_single_symbol_pragma @{keyword "class_instance"} parse_inst_ident parse_inst
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   728
    >> Code_Symbol.Class_Instance
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   729
  || parse_single_symbol_pragma @{keyword "code_module"} Parse.name parse_module
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   730
    >> Code_Symbol.Module;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   731
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   732
fun parse_symbol_pragmas parse_const parse_tyco parse_class parse_classrel parse_inst parse_module =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   733
  Parse.enum1 "|" (Parse.group (fn () => "code symbol pragma")
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   734
    (parse_symbol_pragma parse_const parse_tyco parse_class parse_classrel parse_inst parse_module));
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   735
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   736
val _ =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   737
  Outer_Syntax.command @{command_spec "code_printing"} "declare dedicated printing for code symbols"
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   738
    (parse_symbol_pragmas (Code_Printer.parse_const_syntax) (Code_Printer.parse_tyco_syntax)
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   739
      Parse.string (Parse.minus >> K ()) (Parse.minus >> K ())
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   740
      (Parse.text -- Scan.optional (@{keyword "attach"} |-- Scan.repeat1 Parse.term) [])
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   741
      >> (Toplevel.theory o fold set_printings_cmd));
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   742
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   743
val _ =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   744
  Outer_Syntax.command @{command_spec "code_const"} "define code syntax for constant"
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   745
    (process_multi_syntax Parse.term_group Code_Printer.parse_const_syntax
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   746
      add_const_syntax_cmd);
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   747
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   748
val _ =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   749
  Outer_Syntax.command @{command_spec "code_type"} "define code syntax for type constructor"
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   750
    (process_multi_syntax Parse.xname Code_Printer.parse_tyco_syntax
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   751
      add_tyco_syntax_cmd);
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   752
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24841
diff changeset
   753
val _ =
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   754
  Outer_Syntax.command @{command_spec "code_class"} "define code syntax for class"
52068
1abaea5d5a22 tuned, including signature
haftmann
parents: 51685
diff changeset
   755
    (process_multi_syntax Parse.xname Parse.string
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   756
      add_class_syntax_cmd);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   757
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24841
diff changeset
   758
val _ =
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   759
  Outer_Syntax.command @{command_spec "code_instance"} "define code syntax for instance"
52068
1abaea5d5a22 tuned, including signature
haftmann
parents: 51685
diff changeset
   760
    (process_multi_syntax (Parse.xname --| @{keyword "::"} -- Parse.xname) (Parse.minus >> K ())
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   761
      add_instance_syntax_cmd);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   762
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24841
diff changeset
   763
val _ =
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   764
  Outer_Syntax.command @{command_spec "code_reserved"}
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   765
    "declare words as reserved for target language"
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   766
    (Parse.name -- Scan.repeat1 Parse.name
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   767
      >> (fn (target, reserveds) => (Toplevel.theory o fold (add_reserved target)) reserveds));
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   768
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24841
diff changeset
   769
val _ =
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   770
  Outer_Syntax.command @{command_spec "code_include"}
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   771
    "declare piece of code to be included in generated code"
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   772
    (Parse.name -- Parse.name -- (Parse.text :|--
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   773
      (fn "-" => Scan.succeed NONE
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   774
        | s => Scan.optional (@{keyword "attach"} |-- Scan.repeat1 Parse.term) [] >> pair s >> SOME))
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   775
      >> (fn ((target, name), content_consts) =>
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   776
          (Toplevel.theory o add_include_cmd target) (name, content_consts)));
24992
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   777
d33713284207 code_include replaces code_moduleprolog
haftmann
parents: 24928
diff changeset
   778
val _ =
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   779
  Outer_Syntax.command @{command_spec "code_modulename"} "alias module to other name"
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   780
    (Parse.name -- Scan.repeat1 (Parse.name -- Parse.name)
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   781
      >> (fn (target, modlnames) => (Toplevel.theory o fold (add_module_alias target)) modlnames));
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   782
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   783
val _ =
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   784
  Outer_Syntax.command @{command_spec "code_abort"}
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   785
    "permit constant to be implemented as program abort"
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   786
    (Scan.repeat1 Parse.term_group >> (Toplevel.theory o fold allow_abort_cmd));
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   787
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24841
diff changeset
   788
val _ =
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   789
  Outer_Syntax.command @{command_spec "export_code"} "generate executable code for constants"
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   790
    (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
   791
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   792
end; (*local*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   793
39646
64fdbee67135 improved and tuned external codegen tool
haftmann
parents: 39484
diff changeset
   794
64fdbee67135 improved and tuned external codegen tool
haftmann
parents: 39484
diff changeset
   795
(** external entrance point -- for codegen tool **)
64fdbee67135 improved and tuned external codegen tool
haftmann
parents: 39484
diff changeset
   796
39750
c0099428ca7b consider quick_and_dirty option before loading theory
haftmann
parents: 39679
diff changeset
   797
fun codegen_tool thyname cmd_expr =
39646
64fdbee67135 improved and tuned external codegen tool
haftmann
parents: 39484
diff changeset
   798
  let
64fdbee67135 improved and tuned external codegen tool
haftmann
parents: 39484
diff changeset
   799
    val thy = Thy_Info.get_theory thyname;
64fdbee67135 improved and tuned external codegen tool
haftmann
parents: 39484
diff changeset
   800
    val parse = Scan.read Token.stopper (Parse.!!! code_exprP) o
64fdbee67135 improved and tuned external codegen tool
haftmann
parents: 39484
diff changeset
   801
      (filter Token.is_proper o Outer_Syntax.scan Position.none);
64fdbee67135 improved and tuned external codegen tool
haftmann
parents: 39484
diff changeset
   802
  in case parse cmd_expr
64fdbee67135 improved and tuned external codegen tool
haftmann
parents: 39484
diff changeset
   803
   of SOME f => (writeln "Now generating code..."; f thy)
64fdbee67135 improved and tuned external codegen tool
haftmann
parents: 39484
diff changeset
   804
    | NONE => error ("Bad directive " ^ quote cmd_expr)
64fdbee67135 improved and tuned external codegen tool
haftmann
parents: 39484
diff changeset
   805
  end;
64fdbee67135 improved and tuned external codegen tool
haftmann
parents: 39484
diff changeset
   806
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   807
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   808
(** theory setup **)
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   809
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   810
val setup = antiq_setup;
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   811
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   812
end; (*struct*)