src/Tools/Code/code_target.ML
author paulson
Thu, 14 Jun 2018 14:23:48 +0100
changeset 68446 92ddca1edc43
parent 67463 a5ca98950a91
child 69484 ed6b100a9c7d
permissions -rw-r--r--
merged
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
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
     9
  val cert_tyco: Proof.context -> string -> string
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    10
  val read_tyco: Proof.context -> string -> string
36471
5aae37575885 exported cert_tyco, read_tyco
haftmann
parents: 36271
diff changeset
    11
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    12
  val export_code_for: Proof.context -> Path.T option -> string -> int option -> string -> Token.T list
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
    13
    -> Code_Thingol.program -> bool -> Code_Symbol.T list -> unit
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    14
  val produce_code_for: Proof.context -> string -> int option -> string -> Token.T list
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
    15
    -> Code_Thingol.program -> bool -> Code_Symbol.T list -> (string * string) list * string option list
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    16
  val present_code_for: Proof.context -> string -> int option -> string -> Token.T list
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55149
diff changeset
    17
    -> Code_Thingol.program -> Code_Symbol.T list * Code_Symbol.T list -> string
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    18
  val check_code_for: Proof.context -> string -> bool -> Token.T list
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
    19
    -> Code_Thingol.program -> bool -> Code_Symbol.T list -> unit
38918
haftmann
parents: 38917
diff changeset
    20
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    21
  val export_code: Proof.context -> bool -> string list
38933
bd77e092f67c avoid strange special treatment of empty module names
haftmann
parents: 38929
diff changeset
    22
    -> (((string * string) * Path.T option) * Token.T list) list -> unit
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    23
  val produce_code: Proof.context -> bool -> string list
48568
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 48426
diff changeset
    24
    -> string -> int option -> string -> Token.T list -> (string * string) list * string option list
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    25
  val present_code: Proof.context -> string list -> Code_Symbol.T list
38933
bd77e092f67c avoid strange special treatment of empty module names
haftmann
parents: 38929
diff changeset
    26
    -> string -> int option -> string -> Token.T list -> string
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    27
  val check_code: Proof.context -> bool -> string list
38918
haftmann
parents: 38917
diff changeset
    28
    -> ((string * bool) * Token.T list) list -> unit
haftmann
parents: 38917
diff changeset
    29
48568
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 48426
diff changeset
    30
  val generatedN: string
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 63164
diff changeset
    31
  val compilation_text: Proof.context -> string -> Code_Thingol.program
55684
ee49b4f7edc8 keep only identifiers public which are explicitly requested or demanded by dependencies
haftmann
parents: 55683
diff changeset
    32
    -> Code_Symbol.T list -> bool -> ((string * class list) list * Code_Thingol.itype) * Code_Thingol.iterm
48568
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 48426
diff changeset
    33
    -> (string * string) list * string
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64957
diff changeset
    34
  val compilation_text': Proof.context -> string -> string option -> Code_Thingol.program
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64957
diff changeset
    35
    -> Code_Symbol.T list -> bool -> ((string * class list) list * Code_Thingol.itype) * Code_Thingol.iterm
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64957
diff changeset
    36
    -> ((string * string) list * string) * (Code_Symbol.T -> string option)
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
    37
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    38
  type serializer
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    39
  type literals = Code_Printer.literals
59104
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
    40
  type language
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
    41
  type ancestry
59479
b36379a730f4 explicit error message for non-existing targets
haftmann
parents: 59430
diff changeset
    42
  val assert_target: theory -> string -> string
59104
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
    43
  val add_language: string * language -> theory -> theory
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
    44
  val add_derived_target: string * ancestry -> theory -> theory
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    45
  val the_literals: Proof.context -> 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)
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55149
diff changeset
    49
    -> (Code_Symbol.T list -> int -> 'a -> (string * string) list * (Code_Symbol.T -> string option))
38925
ced825abdc1d tuned serializer argument interface
haftmann
parents: 38924
diff changeset
    50
    -> 'a -> serialization
59324
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
    51
  val default_code_width: int Config.T
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
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
    54
  val set_identifiers: (string, string, string, string, string, string) symbol_attr_decl
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
    55
    -> theory -> theory
55372
3662c44d018c dropped legacy finally
haftmann
parents: 55306
diff changeset
    56
  val set_printings: (Code_Printer.raw_const_syntax, Code_Printer.tyco_syntax, string, unit, unit, (string * string list)) symbol_attr_decl
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    57
    -> theory -> theory
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    58
  val add_reserved: string -> string -> theory -> theory
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    59
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    60
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    61
structure Code_Target : CODE_TARGET =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    62
struct
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    63
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55149
diff changeset
    64
open Basic_Code_Symbol;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    65
open Basic_Code_Thingol;
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    66
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    67
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
    68
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
    69
  (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
    70
    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
    71
    (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
    72
    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
    73
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    74
type tyco_syntax = Code_Printer.tyco_syntax;
55153
eedd549de3ef more suitable names, without any notion of "activating"
haftmann
parents: 55150
diff changeset
    75
type raw_const_syntax = Code_Printer.raw_const_syntax;
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    76
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    77
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    78
(** checking and parsing of symbols **)
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    79
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    80
fun cert_const ctxt const =
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    81
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    82
    val _ = if Sign.declared_const (Proof_Context.theory_of ctxt) const then ()
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    83
      else error ("No such constant: " ^ quote const);
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    84
  in const end;
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    85
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    86
fun read_const ctxt = Code.read_const (Proof_Context.theory_of ctxt);
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    87
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    88
fun cert_tyco ctxt tyco =
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    89
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    90
    val _ = if Sign.declared_tyname (Proof_Context.theory_of ctxt) tyco then ()
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    91
      else error ("No such type constructor: " ^ quote tyco);
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    92
  in tyco end;
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    93
55951
c07d184aebe9 tuned signature -- more uniform check_type_name/read_type_name;
wenzelm
parents: 55776
diff changeset
    94
fun read_tyco ctxt =
56002
2028467b4df4 tuned signature;
wenzelm
parents: 55951
diff changeset
    95
  #1 o dest_Type o Proof_Context.read_type_name {proper = true, strict = true} ctxt;
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    96
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    97
fun cert_class ctxt class =
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    98
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    99
    val _ = Axclass.get_info (Proof_Context.theory_of ctxt) class;
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   100
  in class end;
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   101
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   102
val parse_classrel_ident = Parse.class --| @{keyword "<"} -- Parse.class;
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   103
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   104
fun cert_inst ctxt (class, tyco) =
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   105
  (cert_class ctxt class, cert_tyco ctxt tyco);
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   106
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   107
fun read_inst ctxt (raw_tyco, raw_class) =
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   108
  (read_tyco ctxt raw_tyco, Proof_Context.read_class ctxt raw_class);
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   109
62969
9f394a16c557 eliminated "xname" and variants;
wenzelm
parents: 62550
diff changeset
   110
val parse_inst_ident = Parse.name --| @{keyword "::"} -- Parse.class;
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   111
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   112
fun cert_syms ctxt =
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   113
  Code_Symbol.map_attr (apfst (cert_const ctxt)) (apfst (cert_tyco ctxt))
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 58928
diff changeset
   114
    (apfst (cert_class ctxt)) ((apfst o apply2) (cert_class ctxt)) (apfst (cert_inst ctxt)) I;
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   115
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   116
fun read_syms ctxt =
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   117
  Code_Symbol.map_attr (apfst (read_const ctxt)) (apfst (read_tyco ctxt))
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 58928
diff changeset
   118
    (apfst (Proof_Context.read_class ctxt)) ((apfst o apply2) (Proof_Context.read_class ctxt)) (apfst (read_inst ctxt)) I;
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   119
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   120
fun check_name is_module s =
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   121
  let
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   122
    val _ = if s = "" then error "Bad empty code name" else ();
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   123
    val xs = Long_Name.explode s;
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   124
    val xs' = if is_module
56826
ba18bd41e510 enforce case of identifiers only to accomodate strict language requirements (or clear separation of constructors from variables in the case of SML)
haftmann
parents: 56811
diff changeset
   125
        then map (Name.desymbolize NONE) xs
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   126
      else if length xs < 2
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   127
        then error ("Bad code name without module component: " ^ quote s)
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   128
      else
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   129
        let
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   130
          val (ys, y) = split_last xs;
56826
ba18bd41e510 enforce case of identifiers only to accomodate strict language requirements (or clear separation of constructors from variables in the case of SML)
haftmann
parents: 56811
diff changeset
   131
          val ys' = map (Name.desymbolize NONE) ys;
ba18bd41e510 enforce case of identifiers only to accomodate strict language requirements (or clear separation of constructors from variables in the case of SML)
haftmann
parents: 56811
diff changeset
   132
          val y' = Name.desymbolize NONE y;
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   133
        in ys' @ [y'] end;
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   134
  in if xs' = xs
55291
82780e5f7622 tuned storage of code identifiers
haftmann
parents: 55188
diff changeset
   135
    then if is_module then (xs, "") else split_last xs
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   136
    else error ("Invalid code name: " ^ quote s ^ "\n"
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   137
      ^ "better try " ^ quote (Long_Name.implode xs'))
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   138
  end;
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   139
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   140
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   141
(** serializations and serializer **)
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   142
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   143
(* serialization: abstract nonsense to cover different destinies for generated code *)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   144
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55149
diff changeset
   145
datatype destination = Export of Path.T option | Produce | Present of Code_Symbol.T list;
0940309ed8f1 less clumsy namespace
haftmann
parents: 55149
diff changeset
   146
type serialization = int -> destination -> ((string * string) list * (Code_Symbol.T -> string option)) option;
27014
a5f53d9d2b60 yet another attempt to circumvent printmode problems
haftmann
parents: 27001
diff changeset
   147
39659
07549694e2f1 shifted abstraction over imperative print mode
haftmann
parents: 39646
diff changeset
   148
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
   149
      (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
   150
  | 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
   151
      string [] width content |> SOME
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   152
  | serialization _ string content width (Present syms) =
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   153
     string syms width content
59430
b65809f05dc9 more direct Output.output;
wenzelm
parents: 59324
diff changeset
   154
     |> (apfst o map o apsnd) Output.output
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
   155
     |> SOME;
39659
07549694e2f1 shifted abstraction over imperative print mode
haftmann
parents: 39646
diff changeset
   156
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
   157
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
   158
fun produce f = the (f Produce);
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   159
fun present syms f = space_implode "\n\n" (map snd (fst (the (f (Present syms)))));
38917
haftmann
parents: 38916
diff changeset
   160
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   161
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   162
(* serializers: functions producing serializations *)
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   163
39142
f63715f00fdd dropped names from serializer interface
haftmann
parents: 39102
diff changeset
   164
type serializer = Token.T list
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   165
  -> Proof.context
39142
f63715f00fdd dropped names from serializer interface
haftmann
parents: 39102
diff changeset
   166
  -> {
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   167
    module_name: string,
38926
24f82786cc57 record argument for serializers
haftmann
parents: 38925
diff changeset
   168
    reserved_syms: string list,
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   169
    identifiers: Code_Printer.identifiers,
38926
24f82786cc57 record argument for serializers
haftmann
parents: 38925
diff changeset
   170
    includes: (string * Pretty.T) list,
24f82786cc57 record argument for serializers
haftmann
parents: 38925
diff changeset
   171
    class_syntax: string -> string option,
24f82786cc57 record argument for serializers
haftmann
parents: 38925
diff changeset
   172
    tyco_syntax: string -> Code_Printer.tyco_syntax option,
55153
eedd549de3ef more suitable names, without any notion of "activating"
haftmann
parents: 55150
diff changeset
   173
    const_syntax: string -> Code_Printer.const_syntax option }
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   174
  -> Code_Symbol.T list
41342
3519e0dd8f75 more explicit structure for serializer invocation
haftmann
parents: 41307
diff changeset
   175
  -> Code_Thingol.program
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   176
  -> serialization;
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   177
59102
2c0005cc623f tuned data structures
haftmann
parents: 59101
diff changeset
   178
  
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   179
(** theory data **)
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   180
67207
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   181
type language = {serializer: serializer, literals: literals,
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   182
  check: {env_var: string, make_destination: Path.T -> Path.T, make_command: string -> string},
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   183
  evaluation_args: Token.T list}; 
59102
2c0005cc623f tuned data structures
haftmann
parents: 59101
diff changeset
   184
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   185
type ancestry = (string * (Code_Thingol.program -> Code_Thingol.program)) list;
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   186
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   187
val merge_ancestry : ancestry * ancestry -> ancestry = AList.join (op =) (K snd);
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   188
67207
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   189
type target = {serial: serial, language: language, ancestry: ancestry};
27437
727297fcf7c8 cached code for code antiquotation
haftmann
parents: 27436
diff changeset
   190
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   191
structure Targets = Theory_Data
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   192
(
59324
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   193
  type T = (target * Code_Printer.data) Symtab.table;
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   194
  val empty = Symtab.empty;
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   195
  val extend = I;
59324
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   196
  fun merge (targets1, targets2) : T =
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   197
    Symtab.join (fn target_name => fn ((target1, data1), (target2, data2)) =>
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   198
      if #serial target1 = #serial target2 then
67207
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   199
      ({serial = #serial target1, language = #language target1,
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   200
        ancestry = merge_ancestry (#ancestry target1, #ancestry target2)},
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   201
        Code_Printer.merge_data (data1, data2))
59102
2c0005cc623f tuned data structures
haftmann
parents: 59101
diff changeset
   202
      else error ("Incompatible targets: " ^ quote target_name) 
59324
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   203
    ) (targets1, targets2)
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   204
);
27436
9581777503e9 code antiquotation roaring ahead
haftmann
parents: 27372
diff changeset
   205
59324
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   206
fun exists_target thy = Symtab.defined (Targets.get thy);
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   207
fun lookup_target_data thy = Symtab.lookup (Targets.get thy);
59479
b36379a730f4 explicit error message for non-existing targets
haftmann
parents: 59430
diff changeset
   208
fun assert_target thy target_name =
b36379a730f4 explicit error message for non-existing targets
haftmann
parents: 59430
diff changeset
   209
  if exists_target thy target_name
b36379a730f4 explicit error message for non-existing targets
haftmann
parents: 59430
diff changeset
   210
  then target_name
b36379a730f4 explicit error message for non-existing targets
haftmann
parents: 59430
diff changeset
   211
  else error ("Unknown code target language: " ^ quote target_name);
59100
haftmann
parents: 59099
diff changeset
   212
59104
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   213
fun fold1 f xs = fold f (tl xs) (hd xs);
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   214
59101
6dc48c98303c tuned target inheritance bookkeeping: ancestry is always fully maintained at current entry using canonical merge;
haftmann
parents: 59100
diff changeset
   215
fun join_ancestry thy target_name =
6dc48c98303c tuned target inheritance bookkeeping: ancestry is always fully maintained at current entry using canonical merge;
haftmann
parents: 59100
diff changeset
   216
  let
59479
b36379a730f4 explicit error message for non-existing targets
haftmann
parents: 59430
diff changeset
   217
    val _ = assert_target thy target_name; 
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   218
    val the_target_data = the o lookup_target_data thy;
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   219
    val (target, this_data) = the_target_data target_name;
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   220
    val ancestry = #ancestry target;
59102
2c0005cc623f tuned data structures
haftmann
parents: 59101
diff changeset
   221
    val modifies = rev (map snd ancestry);
2c0005cc623f tuned data structures
haftmann
parents: 59101
diff changeset
   222
    val modify = fold (curry (op o)) modifies I;
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   223
    val datas = rev (map (snd o the_target_data o fst) ancestry) @ [this_data];
59104
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   224
    val data = fold1 (fn data' => fn data => Code_Printer.merge_data (data, data')) datas;
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   225
  in (modify, (target, data)) end;
59101
6dc48c98303c tuned target inheritance bookkeeping: ancestry is always fully maintained at current entry using canonical merge;
haftmann
parents: 59100
diff changeset
   226
59479
b36379a730f4 explicit error message for non-existing targets
haftmann
parents: 59430
diff changeset
   227
  fun allocate_target target_name target thy =
27304
720c8115d723 explicit thm context for error messages
haftmann
parents: 27103
diff changeset
   228
  let
59101
6dc48c98303c tuned target inheritance bookkeeping: ancestry is always fully maintained at current entry using canonical merge;
haftmann
parents: 59100
diff changeset
   229
    val _ = if exists_target thy target_name
6dc48c98303c tuned target inheritance bookkeeping: ancestry is always fully maintained at current entry using canonical merge;
haftmann
parents: 59100
diff changeset
   230
      then error ("Attempt to overwrite existing target " ^ quote target_name)
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   231
      else ();
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   232
  in
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   233
    thy
59324
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   234
    |> (Targets.map o Symtab.update) (target_name, (target, Code_Printer.empty_data))  
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   235
  end;
27436
9581777503e9 code antiquotation roaring ahead
haftmann
parents: 27372
diff changeset
   236
59104
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   237
fun add_language (target_name, language) =
67207
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   238
  allocate_target target_name {serial = serial (), language = language,
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   239
    ancestry = []};
27436
9581777503e9 code antiquotation roaring ahead
haftmann
parents: 27372
diff changeset
   240
59104
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   241
fun add_derived_target (target_name, initial_ancestry) thy =
59101
6dc48c98303c tuned target inheritance bookkeeping: ancestry is always fully maintained at current entry using canonical merge;
haftmann
parents: 59100
diff changeset
   242
  let
59104
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   243
    val _ = if null initial_ancestry
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   244
      then error "Must derive from existing target(s)" else ();
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   245
    fun the_target_data target_name' = case lookup_target_data thy target_name' of
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   246
      NONE => error ("Unknown code target language: " ^ quote target_name')
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   247
    | SOME target_data' => target_data';
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   248
    val targets = rev (map (fst o the_target_data o fst) initial_ancestry);
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   249
    val supremum = fold1 (fn target' => fn target =>
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   250
      if #serial target = #serial target'
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   251
      then target else error "Incompatible targets") targets;
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   252
    val ancestries = map #ancestry targets @ [initial_ancestry];
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   253
    val ancestry = fold1 (fn ancestry' => fn ancestry =>
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   254
      merge_ancestry (ancestry, ancestry')) ancestries;
59101
6dc48c98303c tuned target inheritance bookkeeping: ancestry is always fully maintained at current entry using canonical merge;
haftmann
parents: 59100
diff changeset
   255
  in
67207
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   256
    allocate_target target_name {serial = #serial supremum, language = #language supremum,
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   257
      ancestry = ancestry} thy 
59101
6dc48c98303c tuned target inheritance bookkeeping: ancestry is always fully maintained at current entry using canonical merge;
haftmann
parents: 59100
diff changeset
   258
  end;
6dc48c98303c tuned target inheritance bookkeeping: ancestry is always fully maintained at current entry using canonical merge;
haftmann
parents: 59100
diff changeset
   259
  
59102
2c0005cc623f tuned data structures
haftmann
parents: 59101
diff changeset
   260
fun map_data target_name f thy =
27436
9581777503e9 code antiquotation roaring ahead
haftmann
parents: 27372
diff changeset
   261
  let
59479
b36379a730f4 explicit error message for non-existing targets
haftmann
parents: 59430
diff changeset
   262
    val _ = assert_target thy target_name;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   263
  in
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   264
    thy
59324
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   265
    |> (Targets.map o Symtab.map_entry target_name o apsnd o Code_Printer.map_data) f
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   266
  end;
27304
720c8115d723 explicit thm context for error messages
haftmann
parents: 27103
diff changeset
   267
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   268
fun map_reserved target_name =
59102
2c0005cc623f tuned data structures
haftmann
parents: 59101
diff changeset
   269
  map_data target_name o @{apply 3 (1)};
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   270
fun map_identifiers target_name =
59102
2c0005cc623f tuned data structures
haftmann
parents: 59101
diff changeset
   271
  map_data target_name o @{apply 3 (2)};
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   272
fun map_printings target_name =
59102
2c0005cc623f tuned data structures
haftmann
parents: 59101
diff changeset
   273
  map_data target_name o @{apply 3 (3)};
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   274
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   275
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   276
(** serializer usage **)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   277
59324
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   278
(* technical aside: pretty printing width *)
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   279
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   280
val default_code_width = Attrib.setup_config_int @{binding "default_code_width"} (K 80);
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   281
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   282
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   283
(* montage *)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   284
59102
2c0005cc623f tuned data structures
haftmann
parents: 59101
diff changeset
   285
fun the_language ctxt =
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   286
  #language o fst o the o lookup_target_data (Proof_Context.theory_of ctxt);
37822
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
   287
59102
2c0005cc623f tuned data structures
haftmann
parents: 59101
diff changeset
   288
fun the_literals ctxt = #literals o the_language ctxt;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   289
67207
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   290
fun the_evaluation_args ctxt = #evaluation_args o the_language ctxt;
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   291
39817
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   292
local
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   293
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   294
fun activate_target ctxt target_name =
39817
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   295
  let
59324
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   296
    val thy = Proof_Context.theory_of ctxt;
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   297
    val (modify, target_data) = join_ancestry thy target_name;
59324
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   298
  in (target_data, modify) end;
38927
haftmann
parents: 38926
diff changeset
   299
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   300
fun project_program ctxt syms_hidden syms1 program2 =
38927
haftmann
parents: 38926
diff changeset
   301
  let
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   302
    val syms2 = subtract (op =) syms_hidden syms1;
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   303
    val program3 = Code_Symbol.Graph.restrict (not o member (op =) syms_hidden) program2;
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   304
    val syms4 = Code_Symbol.Graph.all_succs program3 syms2;
54890
cb892d835803 fundamental treatment of undefined vs. universally partial replaces code_abort
haftmann
parents: 54889
diff changeset
   305
    val unimplemented = Code_Thingol.unimplemented program3;
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41940
diff changeset
   306
    val _ =
54889
4121d64fde90 explicit distinction between empty code equations and no code equations, including convenient declaration attributes
haftmann
parents: 54312
diff changeset
   307
      if null unimplemented then ()
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41940
diff changeset
   308
      else error ("No code equations for " ^
55304
55ac31bc08a4 more formal markup;
wenzelm
parents: 55188
diff changeset
   309
        commas (map (Proof_Context.markup_const ctxt) unimplemented));
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   310
    val program4 = Code_Symbol.Graph.restrict (member (op =) syms4) program3;
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   311
  in (syms4, program4) end;
38927
haftmann
parents: 38926
diff changeset
   312
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   313
fun prepare_serializer ctxt (serializer : serializer) reserved identifiers
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   314
    printings module_name args proto_program syms =
38927
haftmann
parents: 38926
diff changeset
   315
  let
55149
626d8f08d479 immediate "activation" of const syntax at declaration time
haftmann
parents: 55147
diff changeset
   316
    val syms_hidden = Code_Symbol.symbols_of printings;
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   317
    val (syms_all, program) = project_program ctxt syms_hidden syms proto_program;
39484
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   318
    fun select_include (name, (content, cs)) =
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55149
diff changeset
   319
      if null cs orelse exists (fn c => member (op =) syms_all (Constant c)) cs
39484
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   320
      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
   321
    val includes = map_filter select_include (Code_Symbol.dest_module_data printings);
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   322
  in
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   323
    (serializer args ctxt {
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   324
      module_name = module_name,
38926
24f82786cc57 record argument for serializers
haftmann
parents: 38925
diff changeset
   325
      reserved_syms = reserved,
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   326
      identifiers = identifiers,
38926
24f82786cc57 record argument for serializers
haftmann
parents: 38925
diff changeset
   327
      includes = includes,
55149
626d8f08d479 immediate "activation" of const syntax at declaration time
haftmann
parents: 55147
diff changeset
   328
      const_syntax = Code_Symbol.lookup_constant_data printings,
626d8f08d479 immediate "activation" of const syntax at declaration time
haftmann
parents: 55147
diff changeset
   329
      tyco_syntax = Code_Symbol.lookup_type_constructor_data printings,
626d8f08d479 immediate "activation" of const syntax at declaration time
haftmann
parents: 55147
diff changeset
   330
      class_syntax = Code_Symbol.lookup_type_class_data printings },
55776
7dd1971b39c1 amended some slips, rolling back currently dysfunctional export minimimalisation for Scala
haftmann
parents: 55757
diff changeset
   331
      (subtract (op =) syms_hidden syms, program))
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   332
  end;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   333
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   334
fun mount_serializer ctxt target_name some_width module_name args program syms =
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   335
  let
59324
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   336
    val default_width = Config.get ctxt default_code_width;
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   337
    val ((target, data), modify) = activate_target ctxt target_name;
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   338
    val serializer = (#serializer o #language) target;
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   339
    val (prepared_serializer, (prepared_syms, prepared_program)) =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   340
      prepare_serializer ctxt serializer
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   341
        (Code_Printer.the_reserved data) (Code_Printer.the_identifiers data)
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   342
        (Code_Printer.the_printings data)
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   343
        module_name args (modify program) syms
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   344
    val width = the_default default_width some_width;
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   345
  in (fn program => fn syms => prepared_serializer syms program width, (prepared_syms, prepared_program)) end;
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   346
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   347
fun invoke_serializer ctxt target_name some_width raw_module_name args program all_public syms =
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   348
  let
55291
82780e5f7622 tuned storage of code identifiers
haftmann
parents: 55188
diff changeset
   349
    val module_name = if raw_module_name = "" then ""
82780e5f7622 tuned storage of code identifiers
haftmann
parents: 55188
diff changeset
   350
      else (check_name true raw_module_name; raw_module_name)
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   351
    val (mounted_serializer, (prepared_syms, prepared_program)) =
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   352
      mount_serializer ctxt target_name some_width module_name args program syms;
63164
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63159
diff changeset
   353
  in
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63159
diff changeset
   354
    Code_Preproc.timed_exec "serializing"
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63159
diff changeset
   355
      (fn () => mounted_serializer prepared_program (if all_public then [] else prepared_syms)) ctxt
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63159
diff changeset
   356
  end;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   357
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   358
fun assert_module_name "" = error "Empty module name not allowed here"
38933
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
62550
f1baa15a6a0c tuned -- more standard operations;
wenzelm
parents: 62549
diff changeset
   361
val using_master_directory =
f1baa15a6a0c tuned -- more standard operations;
wenzelm
parents: 62549
diff changeset
   362
  Option.map o File.full_path o Resources.master_directory o Proof_Context.theory_of;
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
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   368
fun export_code_for ctxt some_path target_name some_width module_name args =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   369
  export (using_master_directory ctxt some_path)
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   370
  ooo invoke_serializer ctxt target_name some_width module_name args;
38918
haftmann
parents: 38917
diff changeset
   371
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   372
fun produce_code_for ctxt target_name some_width module_name args =
39102
4ae1d212100f hand out deresolver from serializer invocation
haftmann
parents: 39058
diff changeset
   373
  let
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   374
    val serializer = invoke_serializer ctxt target_name some_width (assert_module_name module_name) args;
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   375
  in fn program => fn all_public => fn syms =>
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   376
    produce (serializer program all_public syms) |> apsnd (fn deresolve => map deresolve syms)
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
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   379
fun present_code_for ctxt target_name some_width module_name args =
39484
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   380
  let
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   381
    val serializer = invoke_serializer ctxt target_name some_width (assert_module_name module_name) args;
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   382
  in fn program => fn (syms, selects) =>
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   383
    present selects (serializer program false syms)
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
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   386
fun check_code_for ctxt target_name strict args program all_public syms =
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 } =
59102
2c0005cc623f tuned data structures
haftmann
parents: 59101
diff changeset
   389
      (#check o the_language ctxt) target_name;
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;
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   393
        val _ = export (SOME destination) (invoke_serializer ctxt target_name (SOME 80)
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   394
          generatedN args program all_public syms);
48568
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
62549
9498623b27f0 File.bash_string operations in ML as in Scala -- exclusively for GNU bash, not perl and not user output;
wenzelm
parents: 59936
diff changeset
   397
        if Isabelle_System.bash ("cd " ^ File.bash_path p ^ " && " ^ cmd ^ " 2>&1") <> 0
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   398
        then error ("Code check failed for " ^ target_name ^ ": " ^ cmd)
37824
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
63024
adeac19dd410 environment variable check has become pointless after 771b8ad5c7fc
haftmann
parents: 62969
diff changeset
   402
    if not (env_var = "") andalso getenv env_var = ""
37825
adc1143bc1a8 explicit optional checking
haftmann
parents: 37824
diff changeset
   403
    then if strict
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   404
      then error (env_var ^ " not set; cannot check code for " ^ target_name)
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   405
      else warning (env_var ^ " not set; skipped checking code for " ^ target_name)
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
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 63164
diff changeset
   409
fun dynamic_compilation_text mounted_serializer prepared_program syms all_public ((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;
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   415
    val ty' = ITyVar v' `-> ty;
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   416
    val program = prepared_program
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   417
      |> Code_Symbol.Graph.new_node (Code_Symbol.value,
57249
5c75baf68b77 formal variable name: IVar NONE is strictly spoken not supported on lhs of function definitions, e.g. in Scala
haftmann
parents: 56920
diff changeset
   418
          Code_Thingol.Fun (((vs', ty'), [(([IVar (SOME "dummy")], t), (NONE, true))]), NONE))
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   419
      |> fold (curry (perhaps o try o
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   420
          Code_Symbol.Graph.add_edge) Code_Symbol.value) syms;
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   421
    val (program_code, deresolve) =
55684
ee49b4f7edc8 keep only identifiers public which are explicitly requested or demanded by dependencies
haftmann
parents: 55683
diff changeset
   422
      produce (mounted_serializer program (if all_public then [] else [Code_Symbol.value]));
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   423
    val value_name = the (deresolve Code_Symbol.value);
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64957
diff changeset
   424
  in ((program_code, value_name), deresolve) end;
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   425
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64957
diff changeset
   426
fun compilation_text' ctxt target_name some_module_name program syms =
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   427
  let
67207
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   428
    val evaluation_args = the_evaluation_args ctxt target_name;
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   429
    val (mounted_serializer, (_, prepared_program)) =
67207
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   430
      mount_serializer ctxt target_name NONE (the_default generatedN some_module_name) evaluation_args program syms;
63164
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63159
diff changeset
   431
  in
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63159
diff changeset
   432
    Code_Preproc.timed_exec "serializing"
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 63164
diff changeset
   433
    (fn () => dynamic_compilation_text mounted_serializer prepared_program syms) ctxt
63164
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63159
diff changeset
   434
  end;
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   435
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64957
diff changeset
   436
fun compilation_text ctxt target_name program syms =
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64957
diff changeset
   437
  fst oo compilation_text' ctxt target_name NONE program syms
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64957
diff changeset
   438
  
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   439
end; (* local *)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   440
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   441
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   442
(* code generation *)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   443
66586
e5e56c330976 more PIDE markup;
wenzelm
parents: 64959
diff changeset
   444
fun prep_destination (s, pos) =
e5e56c330976 more PIDE markup;
wenzelm
parents: 64959
diff changeset
   445
  if s = "" then NONE
e5e56c330976 more PIDE markup;
wenzelm
parents: 64959
diff changeset
   446
  else
e5e56c330976 more PIDE markup;
wenzelm
parents: 64959
diff changeset
   447
    let
e5e56c330976 more PIDE markup;
wenzelm
parents: 64959
diff changeset
   448
      val _ = Position.report pos Markup.language_path;
e5e56c330976 more PIDE markup;
wenzelm
parents: 64959
diff changeset
   449
      val path = Path.explode s;
e5e56c330976 more PIDE markup;
wenzelm
parents: 64959
diff changeset
   450
      val _ = Position.report pos (Markup.path (Path.smart_implode path));
e5e56c330976 more PIDE markup;
wenzelm
parents: 64959
diff changeset
   451
    in SOME path end;
38918
haftmann
parents: 38917
diff changeset
   452
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   453
fun export_code ctxt all_public cs seris =
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   454
  let
63159
84c6dd947b75 clarified proof context vs. background theory
haftmann
parents: 63157
diff changeset
   455
    val program = Code_Thingol.consts_program ctxt cs;
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   456
    val _ = map (fn (((target_name, module_name), some_path), args) =>
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   457
      export_code_for ctxt some_path target_name NONE module_name args program all_public (map Constant cs)) seris;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   458
  in () end;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   459
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   460
fun export_code_cmd all_public raw_cs seris ctxt =
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   461
  export_code ctxt all_public
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   462
    (Code_Thingol.read_const_exprs ctxt raw_cs)
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   463
    ((map o apfst o apsnd) prep_destination seris);
38918
haftmann
parents: 38917
diff changeset
   464
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   465
fun produce_code ctxt all_public cs target_name some_width some_module_name args =
38918
haftmann
parents: 38917
diff changeset
   466
  let
63159
84c6dd947b75 clarified proof context vs. background theory
haftmann
parents: 63157
diff changeset
   467
    val program = Code_Thingol.consts_program ctxt cs;
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   468
  in produce_code_for ctxt target_name some_width some_module_name args program all_public (map Constant cs) end;
38929
d9ac9dee764d distinguish code production and code presentation
haftmann
parents: 38928
diff changeset
   469
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   470
fun present_code ctxt cs syms target_name some_width some_module_name args =
38929
d9ac9dee764d distinguish code production and code presentation
haftmann
parents: 38928
diff changeset
   471
  let
63159
84c6dd947b75 clarified proof context vs. background theory
haftmann
parents: 63157
diff changeset
   472
    val program = Code_Thingol.consts_program ctxt cs;
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   473
  in present_code_for ctxt target_name some_width some_module_name args program (map Constant cs, syms) end;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   474
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   475
fun check_code ctxt all_public cs seris =
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   476
  let
63159
84c6dd947b75 clarified proof context vs. background theory
haftmann
parents: 63157
diff changeset
   477
    val program = Code_Thingol.consts_program ctxt cs;
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   478
    val _ = map (fn ((target_name, strict), args) =>
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   479
      check_code_for ctxt target_name strict args program all_public (map Constant 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
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   482
fun check_code_cmd all_public raw_cs seris ctxt =
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   483
  check_code ctxt all_public
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   484
    (Code_Thingol.read_const_exprs ctxt raw_cs) seris;
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   485
39480
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   486
local
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   487
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   488
val parse_const_terms = Scan.repeat1 Args.term
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   489
  >> (fn ts => fn ctxt => map (Code.check_const (Proof_Context.theory_of ctxt)) ts);
39480
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   490
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   491
fun parse_names category parse internalize mark_symbol =
39480
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   492
  Scan.lift (Args.parens (Args.$$$ category)) |-- Scan.repeat1 parse
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   493
  >> (fn xs => fn ctxt => map (mark_symbol o internalize ctxt) xs);
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   494
39480
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   495
val parse_consts = parse_names "consts" Args.term
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   496
  (Code.check_const o Proof_Context.theory_of) Constant;
39480
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   497
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   498
val parse_types = parse_names "types" (Scan.lift Args.name)
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   499
  (Sign.intern_type o Proof_Context.theory_of) Type_Constructor;
39480
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   500
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   501
val parse_classes = parse_names "classes" (Scan.lift Args.name)
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   502
  (Sign.intern_class o Proof_Context.theory_of) Type_Class;
39480
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   503
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   504
val parse_instances = parse_names "instances" (Scan.lift (Args.name --| Args.$$$ "::" -- Args.name))
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   505
  (fn ctxt => fn (raw_tyco, raw_class) =>
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   506
    let
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   507
      val thy = Proof_Context.theory_of ctxt;
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   508
    in (Sign.intern_class thy raw_tyco, Sign.intern_type thy raw_class) end) Class_Instance;
39480
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   509
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   510
in
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   511
59323
468bd3aedfa1 modernized and more uniform style
haftmann
parents: 59104
diff changeset
   512
val _ = Theory.setup
67463
a5ca98950a91 clarified access to antiquotation options;
wenzelm
parents: 67386
diff changeset
   513
  (Thy_Output.antiquotation_raw @{binding code_stmts}
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   514
    (parse_const_terms --
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   515
      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
   516
      -- Scan.lift (Args.parens (Args.name -- Scan.option Parse.int)))
67463
a5ca98950a91 clarified access to antiquotation options;
wenzelm
parents: 67386
diff changeset
   517
    (fn ctxt => fn ((mk_cs, mk_stmtss), (target_name, some_width)) =>
a5ca98950a91 clarified access to antiquotation options;
wenzelm
parents: 67386
diff changeset
   518
      Latex.string
a5ca98950a91 clarified access to antiquotation options;
wenzelm
parents: 67386
diff changeset
   519
        (present_code ctxt (mk_cs ctxt)
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   520
          (maps (fn f => f ctxt) mk_stmtss)
67463
a5ca98950a91 clarified access to antiquotation options;
wenzelm
parents: 67386
diff changeset
   521
          target_name some_width "Example" [])));
39480
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   522
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   523
end;
a2ed61449dcc added code_stmts antiquotation from doc-src/more_antiquote.ML
haftmann
parents: 39142
diff changeset
   524
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   525
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   526
(** serializer configuration **)
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   527
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   528
(* reserved symbol names *)
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   529
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   530
fun add_reserved target_name sym thy =
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   531
  let
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   532
    val (_, (_, data)) = join_ancestry thy target_name;
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   533
    val _ = if member (op =) (Code_Printer.the_reserved data) sym
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   534
      then error ("Reserved symbol " ^ quote sym ^ " already declared")
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   535
      else ();
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   536
  in
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   537
    thy
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   538
    |> map_reserved target_name (insert (op =) sym)
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   539
  end;
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   540
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   541
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   542
(* checking of syntax *)
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   543
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   544
fun check_const_syntax ctxt target_name c syn =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   545
  if Code_Printer.requires_args syn > Code.args_number (Proof_Context.theory_of ctxt) c
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   546
  then error ("Too many arguments in syntax for constant " ^ quote c)
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   547
  else Code_Printer.prep_const_syntax (Proof_Context.theory_of ctxt) (the_literals ctxt target_name) c syn;
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   548
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   549
fun check_tyco_syntax ctxt target_name tyco syn =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   550
  if fst syn <> Sign.arity_number (Proof_Context.theory_of ctxt) tyco
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   551
  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
   552
  else syn;
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   553
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   554
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   555
(* custom symbol names *)
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   556
52218
b3a5c6f2cb67 make SML/NJ happy;
wenzelm
parents: 52161
diff changeset
   557
fun arrange_name_decls x =
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   558
  let
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   559
    fun arrange is_module (sym, target_names) = map (fn (target, some_name) =>
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   560
      (target, (sym, Option.map (check_name is_module) some_name))) target_names;
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   561
  in
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   562
    Code_Symbol.maps_attr' (arrange false) (arrange false) (arrange false)
52218
b3a5c6f2cb67 make SML/NJ happy;
wenzelm
parents: 52161
diff changeset
   563
      (arrange false) (arrange false) (arrange true) x
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   564
  end;
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   565
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   566
fun cert_name_decls ctxt = cert_syms ctxt #> arrange_name_decls;
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   567
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   568
fun read_name_decls ctxt = read_syms ctxt #> arrange_name_decls;
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   569
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   570
fun set_identifier (target_name, sym_name) = map_identifiers target_name (Code_Symbol.set_data sym_name);
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   571
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   572
fun gen_set_identifiers prep_name_decl raw_name_decls thy =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   573
  fold set_identifier (prep_name_decl (Proof_Context.init_global thy) raw_name_decls) thy;
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   574
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   575
val set_identifiers = gen_set_identifiers cert_name_decls;
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   576
val set_identifiers_cmd = gen_set_identifiers read_name_decls;
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   577
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   578
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   579
(* custom printings *)
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   580
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   581
fun arrange_printings prep_const ctxt =
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   582
  let
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   583
    fun arrange check (sym, target_syns) =
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   584
      map (fn (target_name, some_syn) =>
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   585
        (target_name, (sym, Option.map (check ctxt target_name sym) some_syn))) target_syns;
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   586
  in
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   587
    Code_Symbol.maps_attr'
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   588
      (arrange check_const_syntax) (arrange check_tyco_syntax)
55149
626d8f08d479 immediate "activation" of const syntax at declaration time
haftmann
parents: 55147
diff changeset
   589
        (arrange ((K o K o K) I)) (arrange ((K o K o K) I)) (arrange ((K o K o K) I))
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   590
        (arrange (fn ctxt => fn _ => fn _ => fn (raw_content, raw_cs) =>
59430
b65809f05dc9 more direct Output.output;
wenzelm
parents: 59324
diff changeset
   591
          (Pretty.blk (0, Pretty.fbreaks (map Code_Printer.str (split_lines raw_content))),
b65809f05dc9 more direct Output.output;
wenzelm
parents: 59324
diff changeset
   592
            map (prep_const ctxt) raw_cs)))
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   593
  end;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   594
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   595
fun cert_printings ctxt = cert_syms ctxt #> arrange_printings cert_const ctxt;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   596
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   597
fun read_printings ctxt = read_syms ctxt #> arrange_printings read_const ctxt;
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   598
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   599
fun set_printing (target_name, sym_syn) = map_printings target_name (Code_Symbol.set_data sym_syn);
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   600
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   601
fun gen_set_printings prep_print_decl raw_print_decls thy =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   602
  fold set_printing (prep_print_decl (Proof_Context.init_global thy) raw_print_decls) thy;
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   603
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   604
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
   605
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
   606
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   607
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   608
(* concrete syntax *)
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   609
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   610
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
   611
  case Scan.read Token.stopper f args
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   612
   of SOME x => x
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   613
    | NONE => error "Bad serializer arguments";
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   614
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   615
27304
720c8115d723 explicit thm context for error messages
haftmann
parents: 27103
diff changeset
   616
(** Isar setup **)
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
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
fun parse_single_symbol_pragma parse_keyword parse_isa parse_target =
52434
cbb94074682b more appropriate cutting of input syntax
haftmann
parents: 52377
diff changeset
   619
  parse_keyword |-- Parse.!!! (parse_isa --| (@{keyword "\<rightharpoonup>"} || @{keyword "=>"})
cbb94074682b more appropriate cutting of input syntax
haftmann
parents: 52377
diff changeset
   620
    -- Parse.and_list1 (@{keyword "("} |-- (Parse.name --| @{keyword ")"} -- Scan.option parse_target)));
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   621
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   622
fun parse_symbol_pragma parse_const parse_tyco parse_class parse_classrel parse_inst parse_module =
52801
6f88e379aa3e proper PIDE markup for codegen arguments;
wenzelm
parents: 52435
diff changeset
   623
  parse_single_symbol_pragma @{keyword "constant"} Parse.term parse_const
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55149
diff changeset
   624
    >> Constant
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   625
  || parse_single_symbol_pragma @{keyword "type_constructor"} Parse.type_const parse_tyco
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55149
diff changeset
   626
    >> Type_Constructor
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   627
  || parse_single_symbol_pragma @{keyword "type_class"} Parse.class parse_class
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55149
diff changeset
   628
    >> Type_Class
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   629
  || parse_single_symbol_pragma @{keyword "class_relation"} parse_classrel_ident parse_classrel
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55149
diff changeset
   630
    >> Class_Relation
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   631
  || parse_single_symbol_pragma @{keyword "class_instance"} parse_inst_ident parse_inst
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55149
diff changeset
   632
    >> Class_Instance
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   633
  || 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
   634
    >> Code_Symbol.Module;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   635
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   636
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
   637
  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
   638
    (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
   639
56201
dd2df97b379b tuned signature;
wenzelm
parents: 56002
diff changeset
   640
val code_expr_argsP = Scan.optional (@{keyword "("} |-- Parse.args --| @{keyword ")"}) [];
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   641
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   642
fun code_expr_inP all_public raw_cs =
52434
cbb94074682b more appropriate cutting of input syntax
haftmann
parents: 52377
diff changeset
   643
  Scan.repeat (@{keyword "in"} |-- Parse.!!! (Parse.name
cbb94074682b more appropriate cutting of input syntax
haftmann
parents: 52377
diff changeset
   644
    -- Scan.optional (@{keyword "module_name"} |-- Parse.name) ""
66586
e5e56c330976 more PIDE markup;
wenzelm
parents: 64959
diff changeset
   645
    -- Scan.optional (@{keyword "file"} |-- Parse.position Parse.path) ("", Position.none)
52434
cbb94074682b more appropriate cutting of input syntax
haftmann
parents: 52377
diff changeset
   646
    -- code_expr_argsP))
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   647
      >> (fn seri_args => export_code_cmd all_public raw_cs seri_args);
52434
cbb94074682b more appropriate cutting of input syntax
haftmann
parents: 52377
diff changeset
   648
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   649
fun code_expr_checkingP all_public raw_cs =
52434
cbb94074682b more appropriate cutting of input syntax
haftmann
parents: 52377
diff changeset
   650
  (@{keyword "checking"} |-- Parse.!!!
cbb94074682b more appropriate cutting of input syntax
haftmann
parents: 52377
diff changeset
   651
    (Scan.repeat (Parse.name -- ((@{keyword "?"} |-- Scan.succeed false) || Scan.succeed true)
cbb94074682b more appropriate cutting of input syntax
haftmann
parents: 52377
diff changeset
   652
    -- code_expr_argsP)))
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   653
      >> (fn seri_args => check_code_cmd all_public raw_cs seri_args);
52434
cbb94074682b more appropriate cutting of input syntax
haftmann
parents: 52377
diff changeset
   654
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   655
val code_exprP = (Scan.optional (@{keyword "open"} |-- Scan.succeed true) false
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   656
  -- Scan.repeat1 Parse.term)
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   657
  :|-- (fn (all_public, raw_cs) => (code_expr_checkingP all_public raw_cs || code_expr_inP all_public raw_cs));
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   658
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   659
val _ =
59936
b8ffc3dc9e24 @{command_spec} is superseded by @{command_keyword};
wenzelm
parents: 59480
diff changeset
   660
  Outer_Syntax.command @{command_keyword code_reserved}
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   661
    "declare words as reserved for target language"
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   662
    (Parse.name -- Scan.repeat1 Parse.name
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   663
      >> (fn (target, reserveds) => (Toplevel.theory o fold (add_reserved target)) reserveds));
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   664
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   665
val _ =
59936
b8ffc3dc9e24 @{command_spec} is superseded by @{command_keyword};
wenzelm
parents: 59480
diff changeset
   666
  Outer_Syntax.command @{command_keyword code_identifier} "declare mandatory names for code symbols"
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   667
    (parse_symbol_pragmas Parse.name Parse.name Parse.name Parse.name Parse.name Parse.name
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   668
      >> (Toplevel.theory o fold set_identifiers_cmd));
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   669
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   670
val _ =
59936
b8ffc3dc9e24 @{command_spec} is superseded by @{command_keyword};
wenzelm
parents: 59480
diff changeset
   671
  Outer_Syntax.command @{command_keyword code_printing} "declare dedicated printing for code symbols"
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   672
    (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
   673
      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
   674
      (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
   675
      >> (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
   676
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   677
val _ =
59936
b8ffc3dc9e24 @{command_spec} is superseded by @{command_keyword};
wenzelm
parents: 59480
diff changeset
   678
  Outer_Syntax.command @{command_keyword export_code} "generate executable code for constants"
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   679
    (Parse.!!! code_exprP >> (fn f => Toplevel.keep (f o Toplevel.context_of)));
30494
c150e6fa4e0d consider exit status of code generation direcitve
haftmann
parents: 30242
diff changeset
   680
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   681
end; (*struct*)