src/Tools/code/code_printer.ML
author haftmann
Fri, 17 Apr 2009 08:34:53 +0200
changeset 30941 705bb15b2365
parent 30648 17365ef082f3
child 31056 01ac77eb660b
permissions -rw-r--r--
simplified code
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
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28064
diff changeset
     9
  val nerror: thm -> string -> 'a
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    10
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    11
  val @@ : 'a * 'a -> 'a list
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    12
  val @| : 'a list * 'a -> 'a list
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    13
  val str: string -> Pretty.T
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    14
  val concat: Pretty.T list -> Pretty.T
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    15
  val brackets: Pretty.T list -> Pretty.T
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    16
  val semicolon: Pretty.T list -> Pretty.T
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    17
  val enum_default: string -> string -> string -> string -> Pretty.T list -> Pretty.T
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    18
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    19
  val first_upper: string -> string
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    20
  val first_lower: string -> string
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    21
  type var_ctxt
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    22
  val make_vars: string list -> var_ctxt
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    23
  val intro_vars: string list -> var_ctxt -> var_ctxt
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    24
  val lookup_var: var_ctxt -> string -> string
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    25
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    26
  type lrx
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    27
  val L: lrx
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    28
  val R: lrx
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    29
  val X: lrx
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    30
  type fixity
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    31
  val BR: fixity
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    32
  val NOBR: fixity
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    33
  val INFX: int * lrx -> fixity
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    34
  val APP: fixity
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    35
  val brackify: fixity -> Pretty.T list -> Pretty.T
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    36
  val brackify_infix: int * lrx -> fixity -> Pretty.T list -> Pretty.T
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    37
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    38
  type itype = Code_Thingol.itype
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    39
  type iterm = Code_Thingol.iterm
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    40
  type const = Code_Thingol.const
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    41
  type dict = Code_Thingol.dict
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    42
  type tyco_syntax
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    43
  type const_syntax
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    44
  val parse_infix: ('a -> 'b) -> lrx * int -> string
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28064
diff changeset
    45
    -> int * ((fixity -> 'b -> Pretty.T)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28064
diff changeset
    46
    -> fixity -> 'a list -> Pretty.T)
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    47
  val parse_syntax: ('a -> 'b) -> OuterParse.token list
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28064
diff changeset
    48
    -> (int * ((fixity -> 'b -> Pretty.T)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28064
diff changeset
    49
    -> fixity -> 'a list -> Pretty.T)) option * OuterParse.token list
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28064
diff changeset
    50
  val simple_const_syntax: (int * ((fixity -> iterm -> Pretty.T)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28064
diff changeset
    51
    -> fixity -> (iterm * itype) list -> Pretty.T)) option -> const_syntax option
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    52
  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
    53
    -> (thm -> var_ctxt -> fixity -> iterm -> Pretty.T)
28708
a1a436f09ec6 explicit check for pattern discipline before code translation
haftmann
parents: 28690
diff changeset
    54
    -> (string -> const_syntax option) -> Code_Thingol.naming
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    55
    -> thm -> var_ctxt -> fixity -> const * iterm list -> Pretty.T
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    56
  val gen_pr_bind: ((string option * Pretty.T option) * itype -> Pretty.T)
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    57
    -> (thm -> var_ctxt -> fixity -> iterm -> Pretty.T)
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28064
diff changeset
    58
    -> thm -> fixity
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    59
    -> (string option * iterm option) * itype -> var_ctxt -> Pretty.T * var_ctxt
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    60
28064
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
    61
  type literals
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
    62
  val Literals: { literal_char: string -> string, literal_string: string -> string,
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
    63
        literal_numeral: bool -> int -> string, literal_list: Pretty.T list -> Pretty.T, infix_cons: int * string }
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
    64
    -> literals
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
    65
  val literal_char: literals -> string -> string
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
    66
  val literal_string: literals -> string -> string
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
    67
  val literal_numeral: literals -> bool -> int -> string
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
    68
  val literal_list: literals -> Pretty.T list -> Pretty.T
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
    69
  val infix_cons: literals -> int * string
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    70
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    71
  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
    72
    -> 'a Graph.T -> string -> string
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    73
  val dest_name: string -> string * string
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    74
end;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    75
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    76
structure Code_Printer : CODE_PRINTER =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    77
struct
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    78
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    79
open Code_Thingol;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    80
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    81
fun nerror thm s = error (s ^ ",\nin equation " ^ Display.string_of_thm thm);
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    82
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    83
(** assembling text pieces **)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    84
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    85
infixr 5 @@;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    86
infixr 5 @|;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    87
fun x @@ y = [x, y];
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    88
fun xs @| y = xs @ [y];
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    89
val str = PrintMode.setmp [] Pretty.str;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    90
val concat = Pretty.block o Pretty.breaks;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    91
val brackets = Pretty.enclose "(" ")" o Pretty.breaks;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    92
fun semicolon ps = Pretty.block [concat ps, str ";"];
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    93
fun enum_default default sep opn cls [] = str default
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    94
  | enum_default default sep opn cls xs = Pretty.enum sep opn cls xs;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    95
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
    96
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    97
(** names and variable name contexts **)
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    98
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
    99
type var_ctxt = string Symtab.table * Name.context;
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   100
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   101
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
   102
  Name.make_context names);
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   103
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   104
fun intro_vars names (namemap, namectxt) =
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   105
  let
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   106
    val (names', namectxt') = Name.variants names namectxt;
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   107
    val namemap' = fold2 (curry Symtab.update) names names' namemap;
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   108
  in (namemap', namectxt') end;
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   109
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   110
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
   111
 of SOME name' => name'
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   112
  | NONE => error ("Invalid name in context: " ^ quote name);
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   113
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   114
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
   115
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
   116
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   117
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   118
(** syntax printer **)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   119
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   120
(* binding priorities *)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   121
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   122
datatype lrx = L | R | X;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   123
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   124
datatype fixity =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   125
    BR
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   126
  | NOBR
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   127
  | INFX of (int * lrx);
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   128
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   129
val APP = INFX (~1, L);
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   130
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   131
fun fixity_lrx L L = false
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   132
  | fixity_lrx R R = false
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   133
  | fixity_lrx _ _ = true;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   134
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   135
fun fixity NOBR _ = false
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   136
  | fixity _ NOBR = false
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   137
  | fixity (INFX (pr, lr)) (INFX (pr_ctxt, lr_ctxt)) =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   138
      pr < pr_ctxt
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   139
      orelse pr = pr_ctxt
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   140
        andalso fixity_lrx lr lr_ctxt
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   141
      orelse pr_ctxt = ~1
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   142
  | fixity BR (INFX _) = false
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   143
  | fixity _ _ = true;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   144
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   145
fun gen_brackify _ [p] = p
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   146
  | gen_brackify true (ps as _::_) = Pretty.enclose "(" ")" ps
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   147
  | gen_brackify false (ps as _::_) = Pretty.block ps;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   148
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   149
fun brackify fxy_ctxt =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   150
  gen_brackify (fixity BR fxy_ctxt) o Pretty.breaks;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   151
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   152
fun brackify_infix infx fxy_ctxt =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   153
  gen_brackify (fixity (INFX infx) fxy_ctxt) o Pretty.breaks;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   154
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   155
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   156
(* generic syntax *)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   157
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   158
type tyco_syntax = int * ((fixity -> itype -> Pretty.T)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   159
  -> fixity -> itype list -> Pretty.T);
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   160
type const_syntax = int * ((var_ctxt -> fixity -> iterm -> Pretty.T)
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   161
  -> Code_Thingol.naming -> thm -> var_ctxt -> fixity -> (iterm * itype) list -> Pretty.T);
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   162
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   163
fun simple_const_syntax x = (Option.map o apsnd)
28708
a1a436f09ec6 explicit check for pattern discipline before code translation
haftmann
parents: 28690
diff changeset
   164
  (fn pretty => fn pr => fn naming => fn thm => fn vars => pretty (pr vars)) x;
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   165
28708
a1a436f09ec6 explicit check for pattern discipline before code translation
haftmann
parents: 28690
diff changeset
   166
fun gen_pr_app pr_app pr_term syntax_const naming thm vars fxy (app as ((c, (_, tys)), ts)) =
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   167
  case syntax_const c
28708
a1a436f09ec6 explicit check for pattern discipline before code translation
haftmann
parents: 28690
diff changeset
   168
   of NONE => brackify fxy (pr_app thm vars app)
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   169
    | SOME (k, pr) =>
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   170
        let
28708
a1a436f09ec6 explicit check for pattern discipline before code translation
haftmann
parents: 28690
diff changeset
   171
          fun pr' fxy ts = pr (pr_term thm) naming thm vars fxy (ts ~~ curry Library.take k tys);
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   172
        in if k = length ts
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   173
          then pr' fxy ts
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   174
        else if k < length ts
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   175
          then case chop k ts of (ts1, ts2) =>
28708
a1a436f09ec6 explicit check for pattern discipline before code translation
haftmann
parents: 28690
diff changeset
   176
            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
   177
          else pr_term thm vars fxy (Code_Thingol.eta_expand k app)
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   178
        end;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   179
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   180
fun gen_pr_bind pr_bind pr_term thm (fxy : fixity) ((v, pat), ty : itype) vars =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   181
  let
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   182
    val vs = case pat
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   183
     of SOME pat => Code_Thingol.fold_varnames (insert (op =)) pat []
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   184
      | NONE => [];
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   185
    val vars' = intro_vars (the_list v) vars;
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   186
    val vars'' = intro_vars vs vars';
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   187
    val v' = Option.map (lookup_var vars') v;
28708
a1a436f09ec6 explicit check for pattern discipline before code translation
haftmann
parents: 28690
diff changeset
   188
    val pat' = Option.map (pr_term thm vars'' fxy) pat;
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   189
  in (pr_bind ((v', pat'), ty), vars'') end;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   190
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   191
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   192
(* mixfix syntax *)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   193
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   194
datatype 'a mixfix =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   195
    Arg of fixity
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   196
  | Pretty of Pretty.T;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   197
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   198
fun mk_mixfix prep_arg (fixity_this, mfx) =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   199
  let
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   200
    fun is_arg (Arg _) = true
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   201
      | is_arg _ = false;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   202
    val i = (length o filter is_arg) mfx;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   203
    fun fillin _ [] [] =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   204
          []
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   205
      | fillin pr (Arg fxy :: mfx) (a :: args) =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   206
          (pr fxy o prep_arg) a :: fillin pr mfx args
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   207
      | fillin pr (Pretty p :: mfx) args =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   208
          p :: fillin pr mfx args;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   209
  in
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   210
    (i, fn pr => fn fixity_ctxt => fn args =>
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   211
      gen_brackify (fixity fixity_this fixity_ctxt) (fillin pr mfx args))
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   212
  end;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   213
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   214
fun parse_infix prep_arg (x, i) s =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   215
  let
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   216
    val l = case x of L => INFX (i, L) | _ => INFX (i, X);
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   217
    val r = case x of R => INFX (i, R) | _ => INFX (i, X);
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   218
  in
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   219
    mk_mixfix prep_arg (INFX (i, x),
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   220
      [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
   221
  end;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   222
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   223
fun parse_mixfix prep_arg s =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   224
  let
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   225
    val sym_any = Scan.one Symbol.is_regular;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   226
    val parse = Scan.optional ($$ "!" >> K true) false -- Scan.repeat (
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   227
         ($$ "(" -- $$ "_" -- $$ ")" >> K (Arg NOBR))
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   228
      || ($$ "_" >> K (Arg BR))
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   229
      || ($$ "/" |-- Scan.repeat ($$ " ") >> (Pretty o Pretty.brk o length))
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   230
      || (Scan.repeat1
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   231
           (   $$ "'" |-- sym_any
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   232
            || Scan.unless ($$ "_" || $$ "/" || $$ "(" |-- $$ "_" |-- $$ ")")
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   233
                 sym_any) >> (Pretty o str o implode)));
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   234
  in case Scan.finite Symbol.stopper parse (Symbol.explode s)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   235
   of ((_, p as [_]), []) => mk_mixfix prep_arg (NOBR, p)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   236
    | ((b, p as _ :: _ :: _), []) => mk_mixfix prep_arg (if b then NOBR else BR, p)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   237
    | _ => Scan.!!
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   238
        (the_default ("malformed mixfix annotation: " ^ quote s) o snd) Scan.fail ()
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   239
  end;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   240
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   241
val (infixK, infixlK, infixrK) = ("infix", "infixl", "infixr");
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   242
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   243
fun parse_syntax prep_arg xs =
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   244
  Scan.option ((
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   245
      ((OuterParse.$$$ infixK  >> K X)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   246
        || (OuterParse.$$$ infixlK >> K L)
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   247
        || (OuterParse.$$$ infixrK >> K R))
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   248
        -- OuterParse.nat >> parse_infix prep_arg
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   249
      || Scan.succeed (parse_mixfix prep_arg))
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   250
      -- OuterParse.string
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   251
      >> (fn (parse, s) => parse s)) xs;
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   252
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   253
val _ = List.app OuterKeyword.keyword [infixK, infixlK, infixrK];
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   254
28064
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   255
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   256
(** pretty literals **)
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   257
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   258
datatype literals = Literals of {
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   259
  literal_char: string -> string,
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   260
  literal_string: string -> string,
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   261
  literal_numeral: bool -> int -> string,
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   262
  literal_list: Pretty.T list -> Pretty.T,
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   263
  infix_cons: int * string
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   264
};
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   265
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   266
fun dest_Literals (Literals lits) = lits;
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   267
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   268
val literal_char = #literal_char o dest_Literals;
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   269
val literal_string = #literal_string o dest_Literals;
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   270
val literal_numeral = #literal_numeral o dest_Literals;
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   271
val literal_list = #literal_list o dest_Literals;
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   272
val infix_cons = #infix_cons o dest_Literals;
d4a6460c53d1 restructured code generation of literals
haftmann
parents: 28060
diff changeset
   273
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   274
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   275
(** module name spaces **)
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   276
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   277
val dest_name =
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   278
  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
   279
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   280
fun mk_name_module reserved_names module_prefix module_alias program =
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   281
  let
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   282
    fun mk_alias name = case module_alias name
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   283
     of SOME name' => name'
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   284
      | NONE => name
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   285
          |> Long_Name.explode
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   286
          |> map (fn name => (the_single o fst) (Name.variants [name] reserved_names))
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   287
          |> Long_Name.implode;
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   288
    fun mk_prefix name = case module_prefix
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   289
     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
   290
      | NONE => name;
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   291
    val tab =
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   292
      Symtab.empty
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   293
      |> 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
   294
           o fst o dest_name o fst)
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   295
             program
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   296
  in the o Symtab.lookup tab end;
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30161
diff changeset
   297
28060
1ee2d3bc25db separate module for code output
haftmann
parents:
diff changeset
   298
end; (*struct*)