src/Tools/Code/code_thingol.ML
author haftmann
Tue, 30 Jun 2009 14:54:00 +0200
changeset 31874 f172346ba805
parent 31775 2b04504fcb69
child 31888 626c075fd457
permissions -rw-r--r--
simplified binding concept
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     1
(*  Title:      Tools/code/code_thingol.ML
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
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     4
Intermediate language ("Thin-gol") representing executable code.
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
     5
Representation and translation.
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     6
*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     7
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     8
infix 8 `%%;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     9
infix 4 `$;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    10
infix 4 `$$;
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
    11
infixr 3 `|=>;
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
    12
infixr 3 `|==>;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    13
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    14
signature BASIC_CODE_THINGOL =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    15
sig
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    16
  type vname = string;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    17
  datatype dict =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    18
      DictConst of string * dict list list
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    19
    | DictVar of string list * (vname * (int * int));
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    20
  datatype itype =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    21
      `%% of string * itype list
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    22
    | ITyVar of vname;
31049
396d4d6a1594 explicit type arguments in constants
haftmann
parents: 31036
diff changeset
    23
  type const = string * ((itype list * dict list list) * itype list (*types of arguments*))
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    24
  datatype iterm =
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
    25
      IConst of const
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    26
    | IVar of vname
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    27
    | `$ of iterm * iterm
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
    28
    | `|=> of (vname * itype) * iterm
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    29
    | ICase of ((iterm * itype) * (iterm * iterm) list) * iterm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    30
        (*((term, type), [(selector pattern, body term )]), primitive term)*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    31
  val `$$ : iterm * iterm list -> iterm;
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
    32
  val `|==> : (vname * itype) list * iterm -> iterm;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    33
  type typscheme = (vname * sort) list * itype;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    34
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    35
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    36
signature CODE_THINGOL =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    37
sig
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    38
  include BASIC_CODE_THINGOL
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    39
  val unfoldl: ('a -> ('a * 'b) option) -> 'a -> 'a * 'b list
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    40
  val unfoldr: ('a -> ('b * 'a) option) -> 'a -> 'b list * 'a
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    41
  val unfold_fun: itype -> itype list * itype
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    42
  val unfold_app: iterm -> iterm * iterm list
31874
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
    43
  val unfold_abs: iterm -> (vname * itype) list * iterm
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    44
  val split_let: iterm -> (((iterm * itype) * iterm) * iterm) option
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    45
  val unfold_let: iterm -> ((iterm * itype) * iterm) list * iterm
31874
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
    46
  val split_pat_abs: iterm -> ((iterm option * itype) * iterm) option
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
    47
  val unfold_pat_abs: iterm -> (iterm option * itype) list * iterm
31049
396d4d6a1594 explicit type arguments in constants
haftmann
parents: 31036
diff changeset
    48
  val unfold_const_app: iterm -> (const * iterm list) option
396d4d6a1594 explicit type arguments in constants
haftmann
parents: 31036
diff changeset
    49
  val eta_expand: int -> const * iterm list -> iterm
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    50
  val contains_dictvar: iterm -> bool
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    51
  val locally_monomorphic: iterm -> bool
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    52
  val fold_constnames: (string -> 'a -> 'a) -> iterm -> 'a -> 'a
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    53
  val fold_varnames: (string -> 'a -> 'a) -> iterm -> 'a -> 'a
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    54
  val fold_unbound_varnames: (string -> 'a -> 'a) -> iterm -> 'a -> 'a
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    55
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    56
  type naming
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
    57
  val empty_naming: naming
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    58
  val lookup_class: naming -> class -> string option
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    59
  val lookup_classrel: naming -> class * class -> string option
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    60
  val lookup_tyco: naming -> string -> string option
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    61
  val lookup_instance: naming -> class * string -> string option
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    62
  val lookup_const: naming -> string -> string option
31054
841c9f67f9e7 explicit type arguments in constants
haftmann
parents: 31049
diff changeset
    63
  val ensure_declared_const: theory -> string -> naming -> string * naming
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    64
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
    65
  datatype stmt =
27024
fcab2dd46872 various code streamlining
haftmann
parents: 26972
diff changeset
    66
      NoStmt
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    67
    | Fun of string * (typscheme * ((iterm list * iterm) * (thm * bool)) list)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    68
    | Datatype of string * ((vname * sort) list * (string * itype list) list)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    69
    | Datatypecons of string * string
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    70
    | Class of class * (vname * ((class * string) list * (string * itype) list))
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    71
    | Classrel of class * class
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    72
    | Classparam of string * class
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    73
    | Classinst of (class * (string * (vname * sort) list))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    74
          * ((class * (string * (string * dict list list))) list
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    75
        * ((string * const) * (thm * bool)) list)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    76
  type program = stmt Graph.T
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    77
  val empty_funs: program -> string list
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    78
  val map_terms_bottom_up: (iterm -> iterm) -> iterm -> iterm
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    79
  val map_terms_stmt: (iterm -> iterm) -> stmt -> stmt
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    80
  val is_cons: program -> string -> bool
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    81
  val contr_classparam_typs: program -> string -> itype option list
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    82
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
    83
  val read_const_exprs: theory -> string list -> string list * string list
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    84
  val consts_program: theory -> string list -> string list * (naming * program)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    85
  val cached_program: theory -> naming * program
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
    86
  val eval_conv: theory -> (sort -> sort)
31063
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31054
diff changeset
    87
    -> (naming -> program -> ((string * sort) list * typscheme) * iterm -> string list -> cterm -> thm)
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    88
    -> cterm -> thm
30970
3fe2e418a071 generic postprocessing scheme for term evaluations
haftmann
parents: 30947
diff changeset
    89
  val eval: theory -> (sort -> sort) -> ((term -> term) -> 'a -> 'a)
31063
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31054
diff changeset
    90
    -> (naming -> program -> ((string * sort) list * typscheme) * iterm -> string list -> 'a)
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    91
    -> term -> 'a
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    92
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    93
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27711
diff changeset
    94
structure Code_Thingol: CODE_THINGOL =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    95
struct
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    96
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    97
(** auxiliary **)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    98
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    99
fun unfoldl dest x =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   100
  case dest x
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   101
   of NONE => (x, [])
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   102
    | SOME (x1, x2) =>
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   103
        let val (x', xs') = unfoldl dest x1 in (x', xs' @ [x2]) end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   104
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   105
fun unfoldr dest x =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   106
  case dest x
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   107
   of NONE => ([], x)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   108
    | SOME (x1, x2) =>
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   109
        let val (xs', x') = unfoldr dest x2 in (x1::xs', x') end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   110
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   111
29962
bd4dc7fa742d tuned comments, stripped ID, deleted superfluous code
haftmann
parents: 29952
diff changeset
   112
(** language core - types, terms **)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   113
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   114
type vname = string;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   115
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   116
datatype dict =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   117
    DictConst of string * dict list list
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   118
  | DictVar of string list * (vname * (int * int));
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   119
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   120
datatype itype =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   121
    `%% of string * itype list
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   122
  | ITyVar of vname;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   123
31049
396d4d6a1594 explicit type arguments in constants
haftmann
parents: 31036
diff changeset
   124
type const = string * ((itype list * dict list list) * itype list (*types of arguments*))
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
   125
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   126
datatype iterm =
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
   127
    IConst of const
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   128
  | IVar of vname
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   129
  | `$ of iterm * iterm
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
   130
  | `|=> of (vname * itype) * iterm
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   131
  | ICase of ((iterm * itype) * (iterm * iterm) list) * iterm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   132
    (*see also signature*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   133
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   134
val op `$$ = Library.foldl (op `$);
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
   135
val op `|==> = Library.foldr (op `|=>);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   136
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   137
val unfold_app = unfoldl
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   138
  (fn op `$ t => SOME t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   139
    | _ => NONE);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   140
31874
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   141
val unfold_abs = unfoldr
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   142
  (fn op `|=> t => SOME t
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   143
    | _ => NONE);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   144
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   145
val split_let = 
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   146
  (fn ICase (((td, ty), [(p, t)]), _) => SOME (((p, ty), td), t)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   147
    | _ => NONE);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   148
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   149
val unfold_let = unfoldr split_let;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   150
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   151
fun unfold_const_app t =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   152
 case unfold_app t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   153
  of (IConst c, ts) => SOME (c, ts)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   154
   | _ => NONE;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   155
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   156
fun fold_aiterms f (t as IConst _) = f t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   157
  | fold_aiterms f (t as IVar _) = f t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   158
  | fold_aiterms f (t1 `$ t2) = fold_aiterms f t1 #> fold_aiterms f t2
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
   159
  | fold_aiterms f (t as _ `|=> t') = f t #> fold_aiterms f t'
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   160
  | fold_aiterms f (ICase (_, t)) = fold_aiterms f t;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   161
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   162
fun fold_constnames f =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   163
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   164
    fun add (IConst (c, _)) = f c
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   165
      | add _ = I;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   166
  in fold_aiterms add end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   167
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   168
fun fold_varnames f =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   169
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   170
    fun add (IVar v) = f v
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
   171
      | add ((v, _) `|=> _) = f v
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   172
      | add _ = I;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   173
  in fold_aiterms add end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   174
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   175
fun fold_unbound_varnames f =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   176
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   177
    fun add _ (IConst _) = I
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   178
      | add vs (IVar v) = if not (member (op =) vs v) then f v else I
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   179
      | add vs (t1 `$ t2) = add vs t1 #> add vs t2
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
   180
      | add vs ((v, _) `|=> t) = add (insert (op =) v vs) t
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   181
      | add vs (ICase (_, t)) = add vs t;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   182
  in add [] end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   183
31874
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   184
fun exists_var t v = fold_unbound_varnames (fn w => fn b => v = w orelse b) t false;
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   185
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   186
val split_pat_abs = (fn (v, ty) `|=> t => (case t
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   187
   of ICase (((IVar w, _), [(p, t')]), _) =>
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   188
        if v = w andalso (exists_var p v orelse not (exists_var t' v))
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   189
        then SOME ((SOME p, ty), t')
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   190
        else SOME ((SOME (IVar v), ty), t)
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   191
    | _ => SOME ((if exists_var t v then SOME (IVar v) else NONE, ty), t))
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   192
  | _ => NONE);
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   193
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   194
val unfold_pat_abs = unfoldr split_pat_abs;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   195
27711
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   196
fun eta_expand k (c as (_, (_, tys)), ts) =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   197
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   198
    val j = length ts;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   199
    val l = k - j;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   200
    val ctxt = (fold o fold_varnames) Name.declare ts Name.context;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   201
    val vs_tys = Name.names ctxt "a" ((curry Library.take l o curry Library.drop j) tys);
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
   202
  in vs_tys `|==> IConst c `$$ ts @ map (fn (v, _) => IVar v) vs_tys end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   203
24662
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   204
fun contains_dictvar t =
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   205
  let
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   206
    fun contains (DictConst (_, dss)) = (fold o fold) contains dss
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   207
      | contains (DictVar _) = K true;
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   208
  in
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   209
    fold_aiterms
31049
396d4d6a1594 explicit type arguments in constants
haftmann
parents: 31036
diff changeset
   210
      (fn IConst (_, ((_, dss), _)) => (fold o fold) contains dss | _ => I) t false
24662
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   211
  end;
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   212
  
25621
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   213
fun locally_monomorphic (IConst _) = false
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   214
  | locally_monomorphic (IVar _) = true
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   215
  | locally_monomorphic (t `$ _) = locally_monomorphic t
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
   216
  | locally_monomorphic (_ `|=> t) = locally_monomorphic t
25621
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   217
  | locally_monomorphic (ICase ((_, ds), _)) = exists (locally_monomorphic o snd) ds;
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   218
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   219
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   220
(** namings **)
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   221
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   222
(* policies *)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   223
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   224
local
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   225
  fun thyname_of thy f x = the (AList.lookup (op =) (f x) Markup.theory_nameN);
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   226
  fun thyname_of_class thy =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   227
    thyname_of thy (ProofContext.query_class (ProofContext.init thy));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   228
  fun thyname_of_tyco thy =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   229
    thyname_of thy (Type.the_tags (Sign.tsig_of thy));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   230
  fun thyname_of_instance thy inst = case AxClass.arity_property thy inst Markup.theory_nameN
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   231
   of [] => error ("no such instance: " ^ quote (snd inst ^ " :: " ^ fst inst))
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   232
    | thyname :: _ => thyname;
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   233
  fun thyname_of_const thy c = case AxClass.class_of_param thy c
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   234
   of SOME class => thyname_of_class thy class
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   235
    | NONE => (case Code.get_datatype_of_constr thy c
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   236
       of SOME dtco => thyname_of_tyco thy dtco
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   237
        | NONE => thyname_of thy (Consts.the_tags (Sign.consts_of thy)) c);
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   238
  fun purify_base "op &" = "and"
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   239
    | purify_base "op |" = "or"
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   240
    | purify_base "op -->" = "implies"
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   241
    | purify_base "op :" = "member"
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   242
    | purify_base "op =" = "eq"
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   243
    | purify_base "*" = "product"
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   244
    | purify_base "+" = "sum"
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   245
    | purify_base s = Name.desymbolize false s;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   246
  fun namify thy get_basename get_thyname name =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   247
    let
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   248
      val prefix = get_thyname thy name;
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   249
      val base = (purify_base o get_basename) name;
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30280
diff changeset
   250
    in Long_Name.append prefix base end;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   251
in
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   252
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30280
diff changeset
   253
fun namify_class thy = namify thy Long_Name.base_name thyname_of_class;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   254
fun namify_classrel thy = namify thy (fn (class1, class2) => 
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30280
diff changeset
   255
  Long_Name.base_name class2 ^ "_" ^ Long_Name.base_name class1) (fn thy => thyname_of_class thy o fst);
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   256
  (*order fits nicely with composed projections*)
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   257
fun namify_tyco thy "fun" = "Pure.fun"
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30280
diff changeset
   258
  | namify_tyco thy tyco = namify thy Long_Name.base_name thyname_of_tyco tyco;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   259
fun namify_instance thy = namify thy (fn (class, tyco) => 
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30280
diff changeset
   260
  Long_Name.base_name class ^ "_" ^ Long_Name.base_name tyco) thyname_of_instance;
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30280
diff changeset
   261
fun namify_const thy = namify thy Long_Name.base_name thyname_of_const;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   262
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   263
end; (* local *)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   264
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   265
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   266
(* data *)
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   267
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   268
datatype naming = Naming of {
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   269
  class: class Symtab.table * Name.context,
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30364
diff changeset
   270
  classrel: string Symreltab.table * Name.context,
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   271
  tyco: string Symtab.table * Name.context,
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30364
diff changeset
   272
  instance: string Symreltab.table * Name.context,
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   273
  const: string Symtab.table * Name.context
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   274
}
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   275
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   276
fun dest_Naming (Naming naming) = naming;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   277
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   278
val empty_naming = Naming {
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   279
  class = (Symtab.empty, Name.context),
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30364
diff changeset
   280
  classrel = (Symreltab.empty, Name.context),
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   281
  tyco = (Symtab.empty, Name.context),
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30364
diff changeset
   282
  instance = (Symreltab.empty, Name.context),
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   283
  const = (Symtab.empty, Name.context)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   284
};
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   285
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   286
local
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   287
  fun mk_naming (class, classrel, tyco, instance, const) =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   288
    Naming { class = class, classrel = classrel,
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   289
      tyco = tyco, instance = instance, const = const };
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   290
  fun map_naming f (Naming { class, classrel, tyco, instance, const }) =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   291
    mk_naming (f (class, classrel, tyco, instance, const));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   292
in
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   293
  fun map_class f = map_naming
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   294
    (fn (class, classrel, tyco, inst, const) =>
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   295
      (f class, classrel, tyco, inst, const));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   296
  fun map_classrel f = map_naming
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   297
    (fn (class, classrel, tyco, inst, const) =>
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   298
      (class, f classrel, tyco, inst, const));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   299
  fun map_tyco f = map_naming
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   300
    (fn (class, classrel, tyco, inst, const) =>
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   301
      (class, classrel, f tyco, inst, const));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   302
  fun map_instance f = map_naming
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   303
    (fn (class, classrel, tyco, inst, const) =>
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   304
      (class, classrel, tyco, f inst, const));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   305
  fun map_const f = map_naming
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   306
    (fn (class, classrel, tyco, inst, const) =>
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   307
      (class, classrel, tyco, inst, f const));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   308
end; (*local*)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   309
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   310
fun add_variant update (thing, name) (tab, used) =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   311
  let
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   312
    val (name', used') = yield_singleton Name.variants name used;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   313
    val tab' = update (thing, name') tab;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   314
  in (tab', used') end;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   315
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   316
fun declare thy mapp lookup update namify thing =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   317
  mapp (add_variant update (thing, namify thy thing))
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   318
  #> `(fn naming => the (lookup naming thing));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   319
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   320
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   321
(* lookup and declare *)
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   322
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   323
local
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   324
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   325
val suffix_class = "class";
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   326
val suffix_classrel = "classrel"
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   327
val suffix_tyco = "tyco";
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   328
val suffix_instance = "inst";
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   329
val suffix_const = "const";
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   330
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   331
fun add_suffix nsp NONE = NONE
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30280
diff changeset
   332
  | add_suffix nsp (SOME name) = SOME (Long_Name.append name nsp);
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   333
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   334
in
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   335
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   336
val lookup_class = add_suffix suffix_class
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   337
  oo Symtab.lookup o fst o #class o dest_Naming;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   338
val lookup_classrel = add_suffix suffix_classrel
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30364
diff changeset
   339
  oo Symreltab.lookup o fst o #classrel o dest_Naming;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   340
val lookup_tyco = add_suffix suffix_tyco
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   341
  oo Symtab.lookup o fst o #tyco o dest_Naming;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   342
val lookup_instance = add_suffix suffix_instance
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30364
diff changeset
   343
  oo Symreltab.lookup o fst o #instance o dest_Naming;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   344
val lookup_const = add_suffix suffix_const
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   345
  oo Symtab.lookup o fst o #const o dest_Naming;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   346
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   347
fun declare_class thy = declare thy map_class
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   348
  lookup_class Symtab.update_new namify_class;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   349
fun declare_classrel thy = declare thy map_classrel
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30364
diff changeset
   350
  lookup_classrel Symreltab.update_new namify_classrel;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   351
fun declare_tyco thy = declare thy map_tyco
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   352
  lookup_tyco Symtab.update_new namify_tyco;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   353
fun declare_instance thy = declare thy map_instance
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30364
diff changeset
   354
  lookup_instance Symreltab.update_new namify_instance;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   355
fun declare_const thy = declare thy map_const
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   356
  lookup_const Symtab.update_new namify_const;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   357
31054
841c9f67f9e7 explicit type arguments in constants
haftmann
parents: 31049
diff changeset
   358
fun ensure_declared_const thy const naming =
841c9f67f9e7 explicit type arguments in constants
haftmann
parents: 31049
diff changeset
   359
  case lookup_const naming const
841c9f67f9e7 explicit type arguments in constants
haftmann
parents: 31049
diff changeset
   360
   of SOME const' => (const', naming)
841c9f67f9e7 explicit type arguments in constants
haftmann
parents: 31049
diff changeset
   361
    | NONE => declare_const thy const naming;
841c9f67f9e7 explicit type arguments in constants
haftmann
parents: 31049
diff changeset
   362
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   363
val unfold_fun = unfoldr
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   364
  (fn "Pure.fun.tyco" `%% [ty1, ty2] => SOME (ty1, ty2)
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   365
    | _ => NONE); (*depends on suffix_tyco and namify_tyco!*)
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   366
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   367
end; (* local *)
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   368
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   369
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   370
(** statements, abstract programs **)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   371
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   372
type typscheme = (vname * sort) list * itype;
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   373
datatype stmt =
27024
fcab2dd46872 various code streamlining
haftmann
parents: 26972
diff changeset
   374
    NoStmt
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   375
  | Fun of string * (typscheme * ((iterm list * iterm) * (thm * bool)) list)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   376
  | Datatype of string * ((vname * sort) list * (string * itype list) list)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   377
  | Datatypecons of string * string
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   378
  | Class of class * (vname * ((class * string) list * (string * itype) list))
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   379
  | Classrel of class * class
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   380
  | Classparam of string * class
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   381
  | Classinst of (class * (string * (vname * sort) list))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   382
        * ((class * (string * (string * dict list list))) list
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28054
diff changeset
   383
      * ((string * const) * (thm * bool)) list);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   384
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   385
type program = stmt Graph.T;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   386
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   387
fun empty_funs program =
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   388
  Graph.fold (fn (name, (Fun (c, (_, [])), _)) => cons c
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   389
               | _ => I) program [];
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   390
27711
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   391
fun map_terms_bottom_up f (t as IConst _) = f t
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   392
  | map_terms_bottom_up f (t as IVar _) = f t
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   393
  | map_terms_bottom_up f (t1 `$ t2) = f
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   394
      (map_terms_bottom_up f t1 `$ map_terms_bottom_up f t2)
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
   395
  | map_terms_bottom_up f ((v, ty) `|=> t) = f
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
   396
      ((v, ty) `|=> map_terms_bottom_up f t)
27711
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   397
  | map_terms_bottom_up f (ICase (((t, ty), ps), t0)) = f
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   398
      (ICase (((map_terms_bottom_up f t, ty), (map o pairself)
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   399
        (map_terms_bottom_up f) ps), map_terms_bottom_up f t0));
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   400
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   401
fun map_terms_stmt f NoStmt = NoStmt
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   402
  | map_terms_stmt f (Fun (c, (tysm, eqs))) = Fun (c, (tysm, (map o apfst)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   403
      (fn (ts, t) => (map f ts, f t)) eqs))
27711
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   404
  | map_terms_stmt f (stmt as Datatype _) = stmt
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   405
  | map_terms_stmt f (stmt as Datatypecons _) = stmt
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   406
  | map_terms_stmt f (stmt as Class _) = stmt
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   407
  | map_terms_stmt f (stmt as Classrel _) = stmt
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   408
  | map_terms_stmt f (stmt as Classparam _) = stmt
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   409
  | map_terms_stmt f (Classinst (arity, (superarities, classparms))) =
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   410
      Classinst (arity, (superarities, (map o apfst o apsnd) (fn const =>
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   411
        case f (IConst const) of IConst const' => const') classparms));
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   412
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   413
fun is_cons program name = case Graph.get_node program name
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   414
 of Datatypecons _ => true
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   415
  | _ => false;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   416
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   417
fun contr_classparam_typs program name = case Graph.get_node program name
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   418
 of Classparam (_, class) => let
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   419
        val Class (_, (_, (_, params))) = Graph.get_node program class;
25621
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   420
        val SOME ty = AList.lookup (op =) params name;
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   421
        val (tys, res_ty) = unfold_fun ty;
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   422
        fun no_tyvar (_ `%% tys) = forall no_tyvar tys
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   423
          | no_tyvar (ITyVar _) = false;
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   424
      in if no_tyvar res_ty
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   425
        then map (fn ty => if no_tyvar ty then NONE else SOME ty) tys
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   426
        else []
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   427
      end
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   428
  | _ => [];
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   429
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   430
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   431
(** translation kernel **)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   432
28724
haftmann
parents: 28708
diff changeset
   433
(* generic mechanisms *)
haftmann
parents: 28708
diff changeset
   434
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   435
fun ensure_stmt lookup declare generate thing (dep, (naming, program)) =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   436
  let
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   437
    fun add_dep name = case dep of NONE => I
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   438
      | SOME dep => Graph.add_edge (dep, name);
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   439
    val (name, naming') = case lookup naming thing
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   440
     of SOME name => (name, naming)
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   441
      | NONE => declare thing naming;
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   442
  in case try (Graph.get_node program) name
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   443
   of SOME stmt => program
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   444
        |> add_dep name
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   445
        |> pair naming'
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   446
        |> pair dep
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   447
        |> pair name
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   448
    | NONE => program
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   449
        |> Graph.default_node (name, NoStmt)
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   450
        |> add_dep name
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   451
        |> pair naming'
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   452
        |> curry generate (SOME name)
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   453
        ||> snd
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   454
        |-> (fn stmt => (apsnd o Graph.map_node name) (K stmt))
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   455
        |> pair dep
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   456
        |> pair name
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   457
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   458
26972
haftmann
parents: 26939
diff changeset
   459
fun not_wellsorted thy thm ty sort e =
haftmann
parents: 26939
diff changeset
   460
  let
haftmann
parents: 26939
diff changeset
   461
    val err_class = Sorts.class_error (Syntax.pp_global thy) e;
haftmann
parents: 26939
diff changeset
   462
    val err_thm = case thm
30023
55954f726043 permissive check for pattern discipline in case schemes
haftmann
parents: 30009
diff changeset
   463
     of SOME thm => "\n(in code equation " ^ Display.string_of_thm thm ^ ")" | NONE => "";
26972
haftmann
parents: 26939
diff changeset
   464
    val err_typ = "Type " ^ Syntax.string_of_typ_global thy ty ^ " not of sort "
haftmann
parents: 26939
diff changeset
   465
      ^ Syntax.string_of_sort_global thy sort;
haftmann
parents: 26939
diff changeset
   466
  in error ("Wellsortedness error" ^ err_thm ^ ":\n" ^ err_typ ^ "\n" ^ err_class) end;
haftmann
parents: 26939
diff changeset
   467
28724
haftmann
parents: 28708
diff changeset
   468
haftmann
parents: 28708
diff changeset
   469
(* translation *)
haftmann
parents: 28708
diff changeset
   470
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   471
fun ensure_tyco thy algbr funcgr tyco =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   472
  let
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   473
    val stmt_datatype =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   474
      let
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   475
        val (vs, cos) = Code.get_datatype thy tyco;
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   476
      in
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   477
        fold_map (translate_tyvar_sort thy algbr funcgr) vs
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   478
        ##>> fold_map (fn (c, tys) =>
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   479
          ensure_const thy algbr funcgr c
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   480
          ##>> fold_map (translate_typ thy algbr funcgr) tys) cos
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   481
        #>> (fn info => Datatype (tyco, info))
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   482
      end;
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   483
  in ensure_stmt lookup_tyco (declare_tyco thy) stmt_datatype tyco end
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   484
and ensure_const thy algbr funcgr c =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   485
  let
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   486
    fun stmt_datatypecons tyco =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   487
      ensure_tyco thy algbr funcgr tyco
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   488
      #>> (fn tyco => Datatypecons (c, tyco));
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   489
    fun stmt_classparam class =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   490
      ensure_class thy algbr funcgr class
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   491
      #>> (fn class => Classparam (c, class));
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   492
    fun stmt_fun ((vs, ty), raw_thms) =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   493
      let
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   494
        val thms = if null (Term.add_tfreesT ty []) orelse (null o fst o strip_type) ty
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   495
          then raw_thms
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31125
diff changeset
   496
          else (map o apfst) (Code.expand_eta thy 1) raw_thms;
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   497
      in
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   498
        fold_map (translate_tyvar_sort thy algbr funcgr) vs
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   499
        ##>> translate_typ thy algbr funcgr ty
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   500
        ##>> fold_map (translate_eq thy algbr funcgr) thms
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   501
        #>> (fn info => Fun (c, info))
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   502
      end;
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   503
    val stmt_const = case Code.get_datatype_of_constr thy c
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   504
     of SOME tyco => stmt_datatypecons tyco
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   505
      | NONE => (case AxClass.class_of_param thy c
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   506
         of SOME class => stmt_classparam class
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31088
diff changeset
   507
          | NONE => stmt_fun (Code_Preproc.typ funcgr c, Code_Preproc.eqns funcgr c))
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   508
  in ensure_stmt lookup_const (declare_const thy) stmt_const c end
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   509
and ensure_class thy (algbr as (_, algebra)) funcgr class =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   510
  let
28924
5c8781b7d6a4 code_funcgr interface includes also sort algebra
haftmann
parents: 28724
diff changeset
   511
    val superclasses = (Sorts.minimize_sort algebra o Sorts.super_classes algebra) class;
24969
b38527eefb3b removed obsolete AxClass.params_of_class;
wenzelm
parents: 24918
diff changeset
   512
    val cs = #params (AxClass.get_info thy class);
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   513
    val stmt_class =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   514
      fold_map (fn superclass => ensure_class thy algbr funcgr superclass
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   515
        ##>> ensure_classrel thy algbr funcgr (class, superclass)) superclasses
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   516
      ##>> fold_map (fn (c, ty) => ensure_const thy algbr funcgr c
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   517
        ##>> translate_typ thy algbr funcgr ty) cs
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   518
      #>> (fn info => Class (class, (unprefix "'" Name.aT, info)))
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   519
  in ensure_stmt lookup_class (declare_class thy) stmt_class class end
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   520
and ensure_classrel thy algbr funcgr (subclass, superclass) =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   521
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   522
    val stmt_classrel =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   523
      ensure_class thy algbr funcgr subclass
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   524
      ##>> ensure_class thy algbr funcgr superclass
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   525
      #>> Classrel;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   526
  in ensure_stmt lookup_classrel (declare_classrel thy) stmt_classrel (subclass, superclass) end
26972
haftmann
parents: 26939
diff changeset
   527
and ensure_inst thy (algbr as (_, algebra)) funcgr (class, tyco) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   528
  let
28924
5c8781b7d6a4 code_funcgr interface includes also sort algebra
haftmann
parents: 28724
diff changeset
   529
    val superclasses = (Sorts.minimize_sort algebra o Sorts.super_classes algebra) class;
24969
b38527eefb3b removed obsolete AxClass.params_of_class;
wenzelm
parents: 24918
diff changeset
   530
    val classparams = these (try (#params o AxClass.get_info thy) class);
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   531
    val vs = Name.names Name.context "'a" (Sorts.mg_domain algebra tyco [class]);
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   532
    val sorts' = Sorts.mg_domain (Sign.classes_of thy) tyco [class];
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   533
    val vs' = map2 (fn (v, sort1) => fn sort2 => (v,
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   534
      Sorts.inter_sort (Sign.classes_of thy) (sort1, sort2))) vs sorts';
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   535
    val arity_typ = Type (tyco, map TFree vs);
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   536
    val arity_typ' = Type (tyco, map (fn (v, sort) => TVar ((v, 0), sort)) vs');
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   537
    fun translate_superarity superclass =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   538
      ensure_class thy algbr funcgr superclass
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   539
      ##>> ensure_classrel thy algbr funcgr (class, superclass)
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   540
      ##>> translate_dicts thy algbr funcgr NONE (arity_typ, [superclass])
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   541
      #>> (fn ((superclass, classrel), [DictConst (inst, dss)]) =>
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   542
            (superclass, (classrel, (inst, dss))));
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   543
    fun translate_classparam_inst (c, ty) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   544
      let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   545
        val c_inst = Const (c, map_type_tfree (K arity_typ') ty);
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25485
diff changeset
   546
        val thm = AxClass.unoverload_conv thy (Thm.cterm_of thy c_inst);
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   547
        val c_ty = (apsnd Logic.unvarifyT o dest_Const o snd
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   548
          o Logic.dest_equals o Thm.prop_of) thm;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   549
      in
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   550
        ensure_const thy algbr funcgr c
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   551
        ##>> translate_const thy algbr funcgr (SOME thm) c_ty
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28054
diff changeset
   552
        #>> (fn (c, IConst c_inst) => ((c, c_inst), (thm, true)))
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   553
      end;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   554
    val stmt_inst =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   555
      ensure_class thy algbr funcgr class
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   556
      ##>> ensure_tyco thy algbr funcgr tyco
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   557
      ##>> fold_map (translate_tyvar_sort thy algbr funcgr) vs
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   558
      ##>> fold_map translate_superarity superclasses
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   559
      ##>> fold_map translate_classparam_inst classparams
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   560
      #>> (fn ((((class, tyco), arity), superarities), classparams) =>
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   561
             Classinst ((class, (tyco, arity)), (superarities, classparams)));
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   562
  in ensure_stmt lookup_instance (declare_instance thy) stmt_inst (class, tyco) end
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   563
and translate_typ thy algbr funcgr (TFree (v, _)) =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   564
      pair (ITyVar (unprefix "'" v))
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   565
  | translate_typ thy algbr funcgr (Type (tyco, tys)) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   566
      ensure_tyco thy algbr funcgr tyco
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   567
      ##>> fold_map (translate_typ thy algbr funcgr) tys
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   568
      #>> (fn (tyco, tys) => tyco `%% tys)
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   569
and translate_term thy algbr funcgr thm (Const (c, ty)) =
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   570
      translate_app thy algbr funcgr thm ((c, ty), [])
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   571
  | translate_term thy algbr funcgr thm (Free (v, _)) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   572
      pair (IVar v)
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   573
  | translate_term thy algbr funcgr thm (Abs (abs as (_, ty, _))) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   574
      let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   575
        val (v, t) = Syntax.variant_abs abs;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   576
      in
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   577
        translate_typ thy algbr funcgr ty
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   578
        ##>> translate_term thy algbr funcgr thm t
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
   579
        #>> (fn (ty, t) => (v, ty) `|=> t)
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   580
      end
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   581
  | translate_term thy algbr funcgr thm (t as _ $ _) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   582
      case strip_comb t
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   583
       of (Const (c, ty), ts) =>
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   584
            translate_app thy algbr funcgr thm ((c, ty), ts)
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   585
        | (t', ts) =>
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   586
            translate_term thy algbr funcgr thm t'
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   587
            ##>> fold_map (translate_term thy algbr funcgr thm) ts
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   588
            #>> (fn (t, ts) => t `$$ ts)
31088
36a011423fcc clarified terminilogy concerning nbe equations
haftmann
parents: 31063
diff changeset
   589
and translate_eq thy algbr funcgr (thm, proper) =
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   590
  let
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   591
    val (args, rhs) = (apfst (snd o strip_comb) o Logic.dest_equals
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   592
      o Logic.unvarify o prop_of) thm;
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   593
  in
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   594
    fold_map (translate_term thy algbr funcgr (SOME thm)) args
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   595
    ##>> translate_term thy algbr funcgr (SOME thm) rhs
31088
36a011423fcc clarified terminilogy concerning nbe equations
haftmann
parents: 31063
diff changeset
   596
    #>> rpair (thm, proper)
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   597
  end
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   598
and translate_const thy algbr funcgr thm (c, ty) =
26972
haftmann
parents: 26939
diff changeset
   599
  let
haftmann
parents: 26939
diff changeset
   600
    val tys = Sign.const_typargs thy (c, ty);
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31088
diff changeset
   601
    val sorts = (map snd o fst o Code_Preproc.typ funcgr) c;
26972
haftmann
parents: 26939
diff changeset
   602
    val tys_args = (fst o Term.strip_type) ty;
haftmann
parents: 26939
diff changeset
   603
  in
haftmann
parents: 26939
diff changeset
   604
    ensure_const thy algbr funcgr c
31049
396d4d6a1594 explicit type arguments in constants
haftmann
parents: 31036
diff changeset
   605
    ##>> fold_map (translate_typ thy algbr funcgr) tys
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   606
    ##>> fold_map (translate_dicts thy algbr funcgr thm) (tys ~~ sorts)
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   607
    ##>> fold_map (translate_typ thy algbr funcgr) tys_args
31049
396d4d6a1594 explicit type arguments in constants
haftmann
parents: 31036
diff changeset
   608
    #>> (fn (((c, tys), iss), tys_args) => IConst (c, ((tys, iss), tys_args)))
26972
haftmann
parents: 26939
diff changeset
   609
  end
29973
haftmann
parents: 29962
diff changeset
   610
and translate_app_const thy algbr funcgr thm (c_ty, ts) =
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   611
  translate_const thy algbr funcgr thm c_ty
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   612
  ##>> fold_map (translate_term thy algbr funcgr thm) ts
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   613
  #>> (fn (t, ts) => t `$$ ts)
29952
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   614
and translate_case thy algbr funcgr thm (num_args, (t_pos, case_pats)) (c_ty, ts) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   615
  let
29952
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   616
    val (tys, _) = (chop num_args o fst o strip_type o snd) c_ty;
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   617
    val t = nth ts t_pos;
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   618
    val ty = nth tys t_pos;
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   619
    val ts_clause = nth_drop t_pos ts;
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   620
    fun mk_clause (co, num_co_args) t =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   621
      let
29952
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   622
        val (vs, body) = Term.strip_abs_eta num_co_args t;
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   623
        val not_undefined = case body
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   624
         of (Const (c, _)) => not (Code.is_undefined thy c)
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   625
          | _ => true;
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   626
        val pat = list_comb (Const (co, map snd vs ---> ty), map Free vs);
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   627
      in (not_undefined, (pat, body)) end;
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   628
    val clauses = if null case_pats then let val ([v_ty], body) =
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   629
        Term.strip_abs_eta 1 (the_single ts_clause)
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   630
      in [(true, (Free v_ty, body))] end
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   631
      else map (uncurry mk_clause)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31125
diff changeset
   632
        (AList.make (Code.no_args thy) case_pats ~~ ts_clause);
29952
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   633
    fun retermify ty (_, (IVar x, body)) =
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
   634
          (x, ty) `|=> body
29952
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   635
      | retermify _ (_, (pat, body)) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   636
          let
29952
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   637
            val (IConst (_, (_, tys)), ts) = unfold_app pat;
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   638
            val vs = map2 (fn IVar x => fn ty => (x, ty)) ts tys;
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
   639
          in vs `|==> body end;
29952
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   640
    fun mk_icase const t ty clauses =
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   641
      let
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   642
        val (ts1, ts2) = chop t_pos (map (retermify ty) clauses);
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   643
      in
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   644
        ICase (((t, ty), map_filter (fn (b, d) => if b then SOME d else NONE) clauses),
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   645
          const `$$ (ts1 @ t :: ts2))
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   646
      end;
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   647
  in
29952
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   648
    translate_const thy algbr funcgr thm c_ty
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   649
    ##>> translate_term thy algbr funcgr thm t
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   650
    ##>> translate_typ thy algbr funcgr ty
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   651
    ##>> fold_map (fn (b, (pat, body)) => translate_term thy algbr funcgr thm pat
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   652
      ##>> translate_term thy algbr funcgr thm body
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   653
      #>> pair b) clauses
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   654
    #>> (fn (((const, t), ty), ds) => mk_icase const t ty ds)
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   655
  end
29973
haftmann
parents: 29962
diff changeset
   656
and translate_app_case thy algbr funcgr thm (case_scheme as (num_args, _)) ((c, ty), ts) =
haftmann
parents: 29962
diff changeset
   657
  if length ts < num_args then
haftmann
parents: 29962
diff changeset
   658
    let
haftmann
parents: 29962
diff changeset
   659
      val k = length ts;
haftmann
parents: 29962
diff changeset
   660
      val tys = (curry Library.take (num_args - k) o curry Library.drop k o fst o strip_type) ty;
haftmann
parents: 29962
diff changeset
   661
      val ctxt = (fold o fold_aterms) Term.declare_term_frees ts Name.context;
haftmann
parents: 29962
diff changeset
   662
      val vs = Name.names ctxt "a" tys;
haftmann
parents: 29962
diff changeset
   663
    in
haftmann
parents: 29962
diff changeset
   664
      fold_map (translate_typ thy algbr funcgr) tys
haftmann
parents: 29962
diff changeset
   665
      ##>> translate_case thy algbr funcgr thm case_scheme ((c, ty), ts @ map Free vs)
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
   666
      #>> (fn (tys, t) => map2 (fn (v, _) => pair v) vs tys `|==> t)
29973
haftmann
parents: 29962
diff changeset
   667
    end
haftmann
parents: 29962
diff changeset
   668
  else if length ts > num_args then
haftmann
parents: 29962
diff changeset
   669
    translate_case thy algbr funcgr thm case_scheme ((c, ty), Library.take (num_args, ts))
haftmann
parents: 29962
diff changeset
   670
    ##>> fold_map (translate_term thy algbr funcgr thm) (Library.drop (num_args, ts))
haftmann
parents: 29962
diff changeset
   671
    #>> (fn (t, ts) => t `$$ ts)
haftmann
parents: 29962
diff changeset
   672
  else
haftmann
parents: 29962
diff changeset
   673
    translate_case thy algbr funcgr thm case_scheme ((c, ty), ts)
haftmann
parents: 29962
diff changeset
   674
and translate_app thy algbr funcgr thm (c_ty_ts as ((c, _), _)) =
haftmann
parents: 29962
diff changeset
   675
  case Code.get_case_scheme thy c
30023
55954f726043 permissive check for pattern discipline in case schemes
haftmann
parents: 30009
diff changeset
   676
   of SOME case_scheme => translate_app_case thy algbr funcgr thm case_scheme c_ty_ts
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   677
    | NONE => translate_app_const thy algbr funcgr thm c_ty_ts
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   678
and translate_tyvar_sort thy (algbr as (proj_sort, _)) funcgr (v, sort) =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   679
  fold_map (ensure_class thy algbr funcgr) (proj_sort sort)
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   680
  #>> (fn sort => (unprefix "'" v, sort))
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   681
and translate_dicts thy (algbr as (proj_sort, algebra)) funcgr thm (ty, sort) =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   682
  let
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   683
    val pp = Syntax.pp_global thy;
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   684
    datatype typarg =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   685
        Global of (class * string) * typarg list list
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   686
      | Local of (class * class) list * (string * (int * sort));
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   687
    fun class_relation (Global ((_, tyco), yss), _) class =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   688
          Global ((class, tyco), yss)
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   689
      | class_relation (Local (classrels, v), subclass) superclass =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   690
          Local ((subclass, superclass) :: classrels, v);
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   691
    fun type_constructor tyco yss class =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   692
      Global ((class, tyco), (map o map) fst yss);
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   693
    fun type_variable (TFree (v, sort)) =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   694
      let
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   695
        val sort' = proj_sort sort;
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   696
      in map_index (fn (n, class) => (Local ([], (v, (n, sort'))), class)) sort' end;
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   697
    val typargs = Sorts.of_sort_derivation pp algebra
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   698
      {class_relation = class_relation, type_constructor = type_constructor,
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   699
       type_variable = type_variable} (ty, proj_sort sort)
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   700
      handle Sorts.CLASS_ERROR e => not_wellsorted thy thm ty sort e;
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   701
    fun mk_dict (Global (inst, yss)) =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   702
          ensure_inst thy algbr funcgr inst
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   703
          ##>> (fold_map o fold_map) mk_dict yss
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   704
          #>> (fn (inst, dss) => DictConst (inst, dss))
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   705
      | mk_dict (Local (classrels, (v, (k, sort)))) =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   706
          fold_map (ensure_classrel thy algbr funcgr) classrels
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   707
          #>> (fn classrels => DictVar (classrels, (unprefix "'" v, (k, length sort))))
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   708
  in fold_map mk_dict typargs end;
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   709
25969
haftmann
parents: 25621
diff changeset
   710
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   711
(* store *)
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   712
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   713
structure Program = CodeDataFun
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   714
(
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   715
  type T = naming * program;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   716
  val empty = (empty_naming, Graph.empty);
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   717
  fun purge thy cs (naming, program) =
27609
b23c9ad0fe7d tuned code theorem bookkeeping
haftmann
parents: 27422
diff changeset
   718
    let
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   719
      val names_delete = cs
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   720
        |> map_filter (lookup_const naming)
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   721
        |> filter (can (Graph.get_node program))
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   722
        |> Graph.all_preds program;
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   723
      val program' = Graph.del_nodes names_delete program;
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   724
    in (naming, program') end;
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   725
);
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   726
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   727
val cached_program = Program.get;
25969
haftmann
parents: 25621
diff changeset
   728
28924
5c8781b7d6a4 code_funcgr interface includes also sort algebra
haftmann
parents: 28724
diff changeset
   729
fun invoke_generation thy (algebra, funcgr) f name =
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   730
  Program.change_yield thy (fn naming_program => (NONE, naming_program)
28924
5c8781b7d6a4 code_funcgr interface includes also sort algebra
haftmann
parents: 28724
diff changeset
   731
    |> f thy algebra funcgr name
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   732
    |-> (fn name => fn (_, naming_program) => (name, naming_program)));
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   733
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   734
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   735
(* program generation *)
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   736
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   737
fun consts_program thy cs =
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   738
  let
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   739
    fun project_consts cs (naming, program) =
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   740
      let
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   741
        val cs_all = Graph.all_succs program cs;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   742
      in (cs, (naming, Graph.subgraph (member (op =) cs_all) program)) end;
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   743
    fun generate_consts thy algebra funcgr =
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   744
      fold_map (ensure_const thy algebra funcgr);
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   745
  in
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31088
diff changeset
   746
    invoke_generation thy (Code_Preproc.obtain thy cs []) generate_consts cs
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   747
    |-> project_consts
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   748
  end;
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   749
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   750
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   751
(* value evaluation *)
25969
haftmann
parents: 25621
diff changeset
   752
31063
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31054
diff changeset
   753
fun ensure_value thy algbr funcgr t =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   754
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   755
    val ty = fastype_of t;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   756
    val vs = fold_term_types (K (fold_atyps (insert (eq_fst op =)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   757
      o dest_TFree))) t [];
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   758
    val stmt_value =
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   759
      fold_map (translate_tyvar_sort thy algbr funcgr) vs
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   760
      ##>> translate_typ thy algbr funcgr ty
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   761
      ##>> translate_term thy algbr funcgr NONE t
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   762
      #>> (fn ((vs, ty), t) => Fun
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   763
        (Term.dummy_patternN, ((vs, ty), [(([], t), (Drule.dummy_thm, true))])));
31063
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31054
diff changeset
   764
    fun term_value (dep, (naming, program1)) =
25969
haftmann
parents: 25621
diff changeset
   765
      let
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   766
        val Fun (_, (vs_ty, [(([], t), _)])) =
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   767
          Graph.get_node program1 Term.dummy_patternN;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   768
        val deps = Graph.imm_succs program1 Term.dummy_patternN;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   769
        val program2 = Graph.del_nodes [Term.dummy_patternN] program1;
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   770
        val deps_all = Graph.all_succs program2 deps;
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   771
        val program3 = Graph.subgraph (member (op =) deps_all) program2;
31063
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31054
diff changeset
   772
      in (((naming, program3), ((vs_ty, t), deps)), (dep, (naming, program2))) end;
26011
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   773
  in
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   774
    ensure_stmt ((K o K) NONE) pair stmt_value Term.dummy_patternN
26011
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   775
    #> snd
31063
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31054
diff changeset
   776
    #> term_value
26011
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   777
  end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   778
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   779
fun base_evaluator thy evaluator algebra funcgr vs t =
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   780
  let
31063
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31054
diff changeset
   781
    val (((naming, program), (((vs', ty'), t'), deps)), _) =
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31054
diff changeset
   782
      invoke_generation thy (algebra, funcgr) ensure_value t;
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   783
    val vs'' = map (fn (v, _) => (v, (the o AList.lookup (op =) vs o prefix "'") v)) vs';
31063
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31054
diff changeset
   784
  in evaluator naming program ((vs'', (vs', ty')), t') deps end;
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   785
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31088
diff changeset
   786
fun eval_conv thy prep_sort = Code_Preproc.eval_conv thy prep_sort o base_evaluator thy;
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31088
diff changeset
   787
fun eval thy prep_sort postproc = Code_Preproc.eval thy prep_sort postproc o base_evaluator thy;
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   788
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   789
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   790
(** diagnostic commands **)
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   791
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   792
fun read_const_exprs thy =
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   793
  let
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   794
    fun consts_of some_thyname =
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   795
      let
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   796
        val thy' = case some_thyname
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   797
         of SOME thyname => ThyInfo.the_theory thyname thy
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   798
          | NONE => thy;
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   799
        val cs = Symtab.fold (fn (c, (_, NONE)) => cons c | _ => I)
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   800
          ((snd o #constants o Consts.dest o #consts o Sign.rep_sg) thy') [];
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   801
        fun belongs_here c =
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   802
          not (exists (fn thy'' => Sign.declared_const thy'' c) (Theory.parents_of thy'))
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   803
      in case some_thyname
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   804
       of NONE => cs
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   805
        | SOME thyname => filter belongs_here cs
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   806
      end;
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   807
    fun read_const_expr "*" = ([], consts_of NONE)
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   808
      | read_const_expr s = if String.isSuffix ".*" s
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   809
          then ([], consts_of (SOME (unsuffix ".*" s)))
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31125
diff changeset
   810
          else ([Code.read_const thy s], []);
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   811
  in pairself flat o split_list o map read_const_expr end;
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   812
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   813
fun code_depgr thy consts =
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   814
  let
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31088
diff changeset
   815
    val (_, eqngr) = Code_Preproc.obtain thy consts [];
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   816
    val select = Graph.all_succs eqngr consts;
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   817
  in
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   818
    eqngr
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   819
    |> not (null consts) ? Graph.subgraph (member (op =) select) 
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   820
    |> Graph.map_nodes ((apsnd o map o apfst) (AxClass.overload thy))
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   821
  end;
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   822
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31088
diff changeset
   823
fun code_thms thy = Pretty.writeln o Code_Preproc.pretty thy o code_depgr thy;
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   824
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   825
fun code_deps thy consts =
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   826
  let
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   827
    val eqngr = code_depgr thy consts;
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   828
    val constss = Graph.strong_conn eqngr;
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   829
    val mapping = Symtab.empty |> fold (fn consts => fold (fn const =>
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   830
      Symtab.update (const, consts)) consts) constss;
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   831
    fun succs consts = consts
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   832
      |> maps (Graph.imm_succs eqngr)
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   833
      |> subtract (op =) consts
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   834
      |> map (the o Symtab.lookup mapping)
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   835
      |> distinct (op =);
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   836
    val conn = [] |> fold (fn consts => cons (consts, succs consts)) constss;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31125
diff changeset
   837
    fun namify consts = map (Code.string_of_const thy) consts
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   838
      |> commas;
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   839
    val prgr = map (fn (consts, constss) =>
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   840
      { name = namify consts, ID = namify consts, dir = "", unfold = true,
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   841
        path = "", parents = map namify constss }) conn;
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   842
  in Present.display_graph prgr end;
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   843
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   844
local
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   845
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   846
structure P = OuterParse
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   847
and K = OuterKeyword
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   848
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   849
fun code_thms_cmd thy = code_thms thy o op @ o read_const_exprs thy;
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   850
fun code_deps_cmd thy = code_deps thy o op @ o read_const_exprs thy;
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   851
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   852
in
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   853
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   854
val _ =
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   855
  OuterSyntax.improper_command "code_thms" "print system of code equations for code" OuterKeyword.diag
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   856
    (Scan.repeat P.term_group
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   857
      >> (fn cs => Toplevel.no_timing o Toplevel.unknown_theory
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   858
        o Toplevel.keep ((fn thy => code_thms_cmd thy cs) o Toplevel.theory_of)));
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   859
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   860
val _ =
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   861
  OuterSyntax.improper_command "code_deps" "visualize dependencies of code equations for code" OuterKeyword.diag
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   862
    (Scan.repeat P.term_group
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   863
      >> (fn cs => Toplevel.no_timing o Toplevel.unknown_theory
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   864
        o Toplevel.keep ((fn thy => code_deps_cmd thy cs) o Toplevel.theory_of)));
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   865
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   866
end;
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   867
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   868
end; (*struct*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   869
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   870
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27711
diff changeset
   871
structure Basic_Code_Thingol: BASIC_CODE_THINGOL = Code_Thingol;