src/Tools/Code/code_printer.ML
author haftmann
Tue, 24 Nov 2009 17:28:25 +0100
changeset 33955 fff6f11b1f09
parent 32924 d2e9b2dab760
child 33957 e9afca2118d4
permissions -rw-r--r--
curried take/drop
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
     1
(*  Title:      Tools/code/code_printer.ML
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
     2
    Author:     Florian Haftmann, TU Muenchen
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
     3
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
     4
Generic operations for pretty printing of target language code.
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
     5
*)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
     6
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
     7
signature CODE_PRINTER =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
     8
sig
32908
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
     9
  type itype = Code_Thingol.itype
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
    10
  type iterm = Code_Thingol.iterm
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
    11
  type const = Code_Thingol.const
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
    12
  type dict = Code_Thingol.dict
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
    13
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28064
diff changeset
    14
  val nerror: thm -> string -> 'a
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    15
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    16
  val @@ : 'a * 'a -> 'a list
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    17
  val @| : 'a list * 'a -> 'a list
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    18
  val str: string -> Pretty.T
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    19
  val concat: Pretty.T list -> Pretty.T
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    20
  val brackets: Pretty.T list -> Pretty.T
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    21
  val semicolon: Pretty.T list -> Pretty.T
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    22
  val enum_default: string -> string -> string -> string -> Pretty.T list -> Pretty.T
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    23
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    24
  val first_upper: string -> string
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    25
  val first_lower: string -> string
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    26
  type var_ctxt
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    27
  val make_vars: string list -> var_ctxt
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    28
  val intro_vars: string list -> var_ctxt -> var_ctxt
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    29
  val lookup_var: var_ctxt -> string -> string
32913
3e9809678574 intro_base_names combinator
haftmann
parents: 32908
diff changeset
    30
  val intro_base_names: (string -> bool) -> (string -> string)
3e9809678574 intro_base_names combinator
haftmann
parents: 32908
diff changeset
    31
    -> string list -> var_ctxt -> var_ctxt
32908
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
    32
  val aux_params: var_ctxt -> iterm list list -> string list
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    33
31056
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
    34
  type literals
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
    35
  val Literals: { literal_char: string -> string, literal_string: string -> string,
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
    36
        literal_numeral: bool -> int -> string,
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
    37
        literal_list: Pretty.T list -> Pretty.T, infix_cons: int * string }
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
    38
    -> literals
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
    39
  val literal_char: literals -> string -> string
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
    40
  val literal_string: literals -> string -> string
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
    41
  val literal_numeral: literals -> bool -> int -> string
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
    42
  val literal_list: literals -> Pretty.T list -> Pretty.T
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
    43
  val infix_cons: literals -> int * string
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
    44
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    45
  type lrx
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    46
  val L: lrx
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    47
  val R: lrx
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    48
  val X: lrx
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    49
  type fixity
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    50
  val BR: fixity
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    51
  val NOBR: fixity
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    52
  val INFX: int * lrx -> fixity
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    53
  val APP: fixity
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    54
  val brackify: fixity -> Pretty.T list -> Pretty.T
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    55
  val brackify_infix: int * lrx -> fixity -> Pretty.T list -> Pretty.T
31665
a1f4d3b3f6c8 tuned brackets for let expressions etc.
haftmann
parents: 31056
diff changeset
    56
  val brackify_block: fixity -> Pretty.T -> Pretty.T list -> Pretty.T -> Pretty.T
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    57
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    58
  type tyco_syntax
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    59
  type const_syntax
31056
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
    60
  type proto_const_syntax
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    61
  val parse_infix: ('a -> 'b) -> lrx * int -> string
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28064
diff changeset
    62
    -> int * ((fixity -> 'b -> Pretty.T)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28064
diff changeset
    63
    -> fixity -> 'a list -> Pretty.T)
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    64
  val parse_syntax: ('a -> 'b) -> OuterParse.token list
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28064
diff changeset
    65
    -> (int * ((fixity -> 'b -> Pretty.T)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28064
diff changeset
    66
    -> fixity -> 'a list -> Pretty.T)) option * OuterParse.token list
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28064
diff changeset
    67
  val simple_const_syntax: (int * ((fixity -> iterm -> Pretty.T)
31056
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
    68
    -> fixity -> (iterm * itype) list -> Pretty.T)) option -> proto_const_syntax option
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
    69
  val activate_const_syntax: theory -> literals
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
    70
    -> proto_const_syntax -> Code_Thingol.naming -> const_syntax * Code_Thingol.naming
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    71
  val gen_pr_app: (thm -> var_ctxt -> const * iterm list -> Pretty.T list)
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    72
    -> (thm -> var_ctxt -> fixity -> iterm -> Pretty.T)
31056
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
    73
    -> (string -> const_syntax option)
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    74
    -> thm -> var_ctxt -> fixity -> const * iterm list -> Pretty.T
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31874
diff changeset
    75
  val gen_pr_bind: (thm -> var_ctxt -> fixity -> iterm -> Pretty.T)
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28064
diff changeset
    76
    -> thm -> fixity
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31874
diff changeset
    77
    -> iterm -> var_ctxt -> Pretty.T * var_ctxt
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    78
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    79
  val mk_name_module: Name.context -> string option -> (string -> string option)
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    80
    -> 'a Graph.T -> string -> string
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    81
  val dest_name: string -> string * string
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    82
end;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    83
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    84
structure Code_Printer : CODE_PRINTER =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    85
struct
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    86
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    87
open Code_Thingol;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    88
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 31889
diff changeset
    89
fun nerror thm s = error (s ^ ",\nin equation " ^ Display.string_of_thm_without_context thm);
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    90
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    91
(** assembling text pieces **)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    92
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    93
infixr 5 @@;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    94
infixr 5 @|;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    95
fun x @@ y = [x, y];
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    96
fun xs @| y = xs @ [y];
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    97
val str = PrintMode.setmp [] Pretty.str;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    98
val concat = Pretty.block o Pretty.breaks;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    99
val brackets = Pretty.enclose "(" ")" o Pretty.breaks;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   100
fun semicolon ps = Pretty.block [concat ps, str ";"];
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   101
fun enum_default default sep opn cls [] = str default
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   102
  | enum_default default sep opn cls xs = Pretty.enum sep opn cls xs;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   103
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   104
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   105
(** names and variable name contexts **)
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   106
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   107
type var_ctxt = string Symtab.table * Name.context;
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   108
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   109
fun make_vars names = (fold (fn name => Symtab.update_new (name, name)) names Symtab.empty,
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   110
  Name.make_context names);
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   111
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   112
fun intro_vars names (namemap, namectxt) =
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   113
  let
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   114
    val (names', namectxt') = Name.variants names namectxt;
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   115
    val namemap' = fold2 (curry Symtab.update) names names' namemap;
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   116
  in (namemap', namectxt') end;
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   117
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   118
fun lookup_var (namemap, _) name = case Symtab.lookup namemap name
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   119
 of SOME name' => name'
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   120
  | NONE => error ("Invalid name in context: " ^ quote name);
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   121
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   122
val first_upper = implode o nth_map 0 Symbol.to_ascii_upper o explode;
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   123
val first_lower = implode o nth_map 0 Symbol.to_ascii_lower o explode;
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   124
32908
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
   125
fun aux_params vars lhss =
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
   126
  let
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
   127
    fun fish_param _ (w as SOME _) = w
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
   128
      | fish_param (IVar (SOME v)) NONE = SOME v
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
   129
      | fish_param _ NONE = NONE;
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
   130
    fun fillup_param _ (_, SOME v) = v
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
   131
      | fillup_param x (i, NONE) = x ^ string_of_int i;
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
   132
    val fished1 = fold (map2 fish_param) lhss (replicate (length (hd lhss)) NONE);
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
   133
    val x = Name.variant (map_filter I fished1) "x";
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
   134
    val fished2 = map_index (fillup_param x) fished1;
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
   135
    val (fished3, _) = Name.variants fished2 Name.context;
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
   136
    val vars' = intro_vars fished3 vars;
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
   137
  in map (lookup_var vars') fished3 end;
9aa8dfef16ff factored out Code_Printer.aux_params
haftmann
parents: 32091
diff changeset
   138
32913
3e9809678574 intro_base_names combinator
haftmann
parents: 32908
diff changeset
   139
fun intro_base_names no_syntax deresolve names = names 
3e9809678574 intro_base_names combinator
haftmann
parents: 32908
diff changeset
   140
  |> map_filter (fn name => if no_syntax name then
3e9809678574 intro_base_names combinator
haftmann
parents: 32908
diff changeset
   141
      let val name' = deresolve name in
3e9809678574 intro_base_names combinator
haftmann
parents: 32908
diff changeset
   142
        if Long_Name.is_qualified name' then NONE else SOME name'
3e9809678574 intro_base_names combinator
haftmann
parents: 32908
diff changeset
   143
      end else NONE)
3e9809678574 intro_base_names combinator
haftmann
parents: 32908
diff changeset
   144
  |> intro_vars;
3e9809678574 intro_base_names combinator
haftmann
parents: 32908
diff changeset
   145
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   146
31056
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   147
(** pretty literals **)
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   148
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   149
datatype literals = Literals of {
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   150
  literal_char: string -> string,
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   151
  literal_string: string -> string,
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   152
  literal_numeral: bool -> int -> string,
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   153
  literal_list: Pretty.T list -> Pretty.T,
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   154
  infix_cons: int * string
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   155
};
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   156
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   157
fun dest_Literals (Literals lits) = lits;
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   158
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   159
val literal_char = #literal_char o dest_Literals;
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   160
val literal_string = #literal_string o dest_Literals;
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   161
val literal_numeral = #literal_numeral o dest_Literals;
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   162
val literal_list = #literal_list o dest_Literals;
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   163
val infix_cons = #infix_cons o dest_Literals;
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   164
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   165
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   166
(** syntax printer **)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   167
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   168
(* binding priorities *)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   169
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   170
datatype lrx = L | R | X;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   171
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   172
datatype fixity =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   173
    BR
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   174
  | NOBR
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   175
  | INFX of (int * lrx);
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   176
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   177
val APP = INFX (~1, L);
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   178
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   179
fun fixity_lrx L L = false
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   180
  | fixity_lrx R R = false
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   181
  | fixity_lrx _ _ = true;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   182
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   183
fun fixity NOBR _ = false
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   184
  | fixity _ NOBR = false
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   185
  | fixity (INFX (pr, lr)) (INFX (pr_ctxt, lr_ctxt)) =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   186
      pr < pr_ctxt
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   187
      orelse pr = pr_ctxt
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   188
        andalso fixity_lrx lr lr_ctxt
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   189
      orelse pr_ctxt = ~1
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   190
  | fixity BR (INFX _) = false
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   191
  | fixity _ _ = true;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   192
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   193
fun gen_brackify _ [p] = p
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   194
  | gen_brackify true (ps as _::_) = Pretty.enclose "(" ")" ps
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   195
  | gen_brackify false (ps as _::_) = Pretty.block ps;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   196
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   197
fun brackify fxy_ctxt =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   198
  gen_brackify (fixity BR fxy_ctxt) o Pretty.breaks;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   199
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   200
fun brackify_infix infx fxy_ctxt =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   201
  gen_brackify (fixity (INFX infx) fxy_ctxt) o Pretty.breaks;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   202
31665
a1f4d3b3f6c8 tuned brackets for let expressions etc.
haftmann
parents: 31056
diff changeset
   203
fun brackify_block fxy_ctxt p1 ps p2 =
a1f4d3b3f6c8 tuned brackets for let expressions etc.
haftmann
parents: 31056
diff changeset
   204
  let val p = Pretty.block_enclose (p1, p2) ps
a1f4d3b3f6c8 tuned brackets for let expressions etc.
haftmann
parents: 31056
diff changeset
   205
  in if fixity BR fxy_ctxt
a1f4d3b3f6c8 tuned brackets for let expressions etc.
haftmann
parents: 31056
diff changeset
   206
    then Pretty.enclose "(" ")" [p]
a1f4d3b3f6c8 tuned brackets for let expressions etc.
haftmann
parents: 31056
diff changeset
   207
    else p
a1f4d3b3f6c8 tuned brackets for let expressions etc.
haftmann
parents: 31056
diff changeset
   208
  end;
a1f4d3b3f6c8 tuned brackets for let expressions etc.
haftmann
parents: 31056
diff changeset
   209
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   210
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   211
(* generic syntax *)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   212
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   213
type tyco_syntax = int * ((fixity -> itype -> Pretty.T)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   214
  -> fixity -> itype list -> Pretty.T);
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   215
type const_syntax = int * ((var_ctxt -> fixity -> iterm -> Pretty.T)
31056
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   216
  -> thm -> var_ctxt -> fixity -> (iterm * itype) list -> Pretty.T);
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   217
type proto_const_syntax = int * (string list * (literals -> string list
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   218
  -> (var_ctxt -> fixity -> iterm -> Pretty.T)
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   219
    -> thm -> var_ctxt -> fixity -> (iterm * itype) list -> Pretty.T));
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   220
31056
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   221
fun simple_const_syntax (SOME (n, f)) = SOME (n,
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   222
      ([], (fn _ => fn _ => fn pr => fn thm => fn vars => f (pr vars))))
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   223
  | simple_const_syntax NONE = NONE;
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   224
31056
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   225
fun activate_const_syntax thy literals (n, (cs, f)) naming =
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   226
  fold_map (Code_Thingol.ensure_declared_const thy) cs naming
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   227
  |-> (fn cs' => pair (n, f literals cs'));
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   228
01ac77eb660b robustifed infrastructure for complex term syntax during code generation
haftmann
parents: 30648
diff changeset
   229
fun gen_pr_app pr_app pr_term syntax_const thm vars fxy (app as ((c, (_, tys)), ts)) =
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   230
  case syntax_const c
28708
a1a436f09ec6 explicit check for pattern discipline before code translation
haftmann
parents: 28690
diff changeset
   231
   of NONE => brackify fxy (pr_app thm vars app)
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   232
    | SOME (k, pr) =>
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   233
        let
33955
fff6f11b1f09 curried take/drop
haftmann
parents: 32924
diff changeset
   234
          fun pr' fxy ts = pr (pr_term thm) thm vars fxy (ts ~~ curry (uncurry take) k tys);
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   235
        in if k = length ts
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   236
          then pr' fxy ts
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   237
        else if k < length ts
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   238
          then case chop k ts of (ts1, ts2) =>
28708
a1a436f09ec6 explicit check for pattern discipline before code translation
haftmann
parents: 28690
diff changeset
   239
            brackify fxy (pr' APP ts1 :: map (pr_term thm vars BR) ts2)
a1a436f09ec6 explicit check for pattern discipline before code translation
haftmann
parents: 28690
diff changeset
   240
          else pr_term thm vars fxy (Code_Thingol.eta_expand k app)
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   241
        end;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   242
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31874
diff changeset
   243
fun gen_pr_bind pr_term thm (fxy : fixity) pat vars =
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   244
  let
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31874
diff changeset
   245
    val vs = Code_Thingol.fold_varnames (insert (op =)) pat [];
31874
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   246
    val vars' = intro_vars vs vars;
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31874
diff changeset
   247
  in (pr_term thm vars' fxy pat, vars') end;
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   248
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   249
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   250
(* mixfix syntax *)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   251
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   252
datatype 'a mixfix =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   253
    Arg of fixity
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   254
  | Pretty of Pretty.T;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   255
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   256
fun mk_mixfix prep_arg (fixity_this, mfx) =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   257
  let
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   258
    fun is_arg (Arg _) = true
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   259
      | is_arg _ = false;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   260
    val i = (length o filter is_arg) mfx;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   261
    fun fillin _ [] [] =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   262
          []
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   263
      | fillin pr (Arg fxy :: mfx) (a :: args) =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   264
          (pr fxy o prep_arg) a :: fillin pr mfx args
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   265
      | fillin pr (Pretty p :: mfx) args =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   266
          p :: fillin pr mfx args;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   267
  in
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   268
    (i, fn pr => fn fixity_ctxt => fn args =>
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   269
      gen_brackify (fixity fixity_this fixity_ctxt) (fillin pr mfx args))
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   270
  end;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   271
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   272
fun parse_infix prep_arg (x, i) s =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   273
  let
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   274
    val l = case x of L => INFX (i, L) | _ => INFX (i, X);
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   275
    val r = case x of R => INFX (i, R) | _ => INFX (i, X);
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   276
  in
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   277
    mk_mixfix prep_arg (INFX (i, x),
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   278
      [Arg l, (Pretty o Pretty.brk) 1, (Pretty o str) s, (Pretty o Pretty.brk) 1, Arg r])
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   279
  end;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   280
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   281
fun parse_mixfix prep_arg s =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   282
  let
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   283
    val sym_any = Scan.one Symbol.is_regular;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   284
    val parse = Scan.optional ($$ "!" >> K true) false -- Scan.repeat (
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   285
         ($$ "(" -- $$ "_" -- $$ ")" >> K (Arg NOBR))
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   286
      || ($$ "_" >> K (Arg BR))
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   287
      || ($$ "/" |-- Scan.repeat ($$ " ") >> (Pretty o Pretty.brk o length))
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   288
      || (Scan.repeat1
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   289
           (   $$ "'" |-- sym_any
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   290
            || Scan.unless ($$ "_" || $$ "/" || $$ "(" |-- $$ "_" |-- $$ ")")
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   291
                 sym_any) >> (Pretty o str o implode)));
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   292
  in case Scan.finite Symbol.stopper parse (Symbol.explode s)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   293
   of ((_, p as [_]), []) => mk_mixfix prep_arg (NOBR, p)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   294
    | ((b, p as _ :: _ :: _), []) => mk_mixfix prep_arg (if b then NOBR else BR, p)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   295
    | _ => Scan.!!
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   296
        (the_default ("malformed mixfix annotation: " ^ quote s) o snd) Scan.fail ()
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   297
  end;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   298
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   299
val (infixK, infixlK, infixrK) = ("infix", "infixl", "infixr");
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   300
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   301
fun parse_syntax prep_arg xs =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   302
  Scan.option ((
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   303
      ((OuterParse.$$$ infixK  >> K X)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   304
        || (OuterParse.$$$ infixlK >> K L)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   305
        || (OuterParse.$$$ infixrK >> K R))
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   306
        -- OuterParse.nat >> parse_infix prep_arg
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   307
      || Scan.succeed (parse_mixfix prep_arg))
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   308
      -- OuterParse.string
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   309
      >> (fn (parse, s) => parse s)) xs;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   310
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   311
val _ = List.app OuterKeyword.keyword [infixK, infixlK, infixrK];
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   312
28064
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   313
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   314
(** module name spaces **)
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   315
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   316
val dest_name =
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   317
  apfst Long_Name.implode o split_last o fst o split_last o Long_Name.explode;
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   318
32924
d2e9b2dab760 dropped Code_Printer prefix where feasible; fixed whitespace issues; more coherent terminology
haftmann
parents: 32913
diff changeset
   319
fun mk_name_module reserved module_prefix module_alias program =
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   320
  let
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   321
    fun mk_alias name = case module_alias name
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   322
     of SOME name' => name'
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   323
      | NONE => name
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   324
          |> Long_Name.explode
32924
d2e9b2dab760 dropped Code_Printer prefix where feasible; fixed whitespace issues; more coherent terminology
haftmann
parents: 32913
diff changeset
   325
          |> map (fn name => (the_single o fst) (Name.variants [name] reserved))
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   326
          |> Long_Name.implode;
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   327
    fun mk_prefix name = case module_prefix
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   328
     of SOME module_prefix => Long_Name.append module_prefix name
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   329
      | NONE => name;
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   330
    val tab =
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   331
      Symtab.empty
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   332
      |> Graph.fold ((fn name => Symtab.default (name, (mk_alias #> mk_prefix) name))
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   333
           o fst o dest_name o fst)
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   334
             program
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   335
  in the o Symtab.lookup tab end;
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   336
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   337
end; (*struct*)