src/Tools/code/code_thingol.ML
author haftmann
Wed, 29 Oct 2008 11:33:40 +0100
changeset 28708 a1a436f09ec6
parent 28706 3fef773ae6b1
child 28724 4656aacba2bc
permissions -rw-r--r--
explicit check for pattern discipline before code translation
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
    ID:         $Id$
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     3
    Author:     Florian Haftmann, TU Muenchen
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     4
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     5
Intermediate language ("Thin-gol") representing executable code.
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
     6
Representation and translation.
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     7
*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     8
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     9
infix 8 `%%;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    10
infix 4 `$;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    11
infix 4 `$$;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    12
infixr 3 `|->;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    13
infixr 3 `|-->;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    14
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    15
signature BASIC_CODE_THINGOL =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    16
sig
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    17
  type vname = string;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    18
  datatype dict =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    19
      DictConst of string * dict list list
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    20
    | DictVar of string list * (vname * (int * int));
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    21
  datatype itype =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    22
      `%% of string * itype list
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    23
    | ITyVar of vname;
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
    24
  type const = string * (dict list list * itype list (*types of arguments*))
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    25
  datatype iterm =
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
    26
      IConst of const
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    27
    | IVar of vname
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    28
    | `$ of iterm * iterm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    29
    | `|-> of (vname * itype) * iterm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    30
    | ICase of ((iterm * itype) * (iterm * iterm) list) * iterm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    31
        (*((term, type), [(selector pattern, body term )]), primitive term)*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    32
  val `$$ : iterm * iterm list -> iterm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    33
  val `|--> : (vname * itype) list * iterm -> iterm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    34
  type typscheme = (vname * sort) list * itype;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    35
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    36
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    37
signature CODE_THINGOL =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    38
sig
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    39
  include BASIC_CODE_THINGOL
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    40
  val unfoldl: ('a -> ('a * 'b) option) -> 'a -> 'a * 'b list
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    41
  val unfoldr: ('a -> ('b * 'a) option) -> 'a -> 'b list * 'a
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    42
  val unfold_fun: itype -> itype list * itype
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    43
  val unfold_app: iterm -> iterm * iterm list
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    44
  val split_abs: iterm -> (((vname * iterm option) * itype) * iterm) option
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    45
  val unfold_abs: iterm -> ((vname * iterm option) * itype) list * iterm
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    46
  val split_let: iterm -> (((iterm * itype) * iterm) * iterm) option
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    47
  val unfold_let: iterm -> ((iterm * itype) * iterm) list * iterm
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    48
  val unfold_const_app: iterm ->
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    49
    ((string * (dict list list * itype list)) * iterm list) option
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    50
  val collapse_let: ((vname * itype) * iterm) * iterm
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    51
    -> (iterm * itype) * (iterm * iterm) list
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    52
  val eta_expand: int -> (string * (dict list list * itype list)) * iterm list -> iterm
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    53
  val contains_dictvar: iterm -> bool
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    54
  val locally_monomorphic: iterm -> bool
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    55
  val fold_constnames: (string -> 'a -> 'a) -> iterm -> 'a -> 'a
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    56
  val fold_varnames: (string -> 'a -> 'a) -> iterm -> 'a -> 'a
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    57
  val fold_unbound_varnames: (string -> 'a -> 'a) -> iterm -> 'a -> 'a
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    58
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    59
  type naming
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
    60
  val empty_naming: naming
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    61
  val lookup_class: naming -> class -> string option
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    62
  val lookup_classrel: naming -> class * class -> string option
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    63
  val lookup_tyco: naming -> string -> string option
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    64
  val lookup_instance: naming -> class * string -> string option
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    65
  val lookup_const: naming -> string -> string option
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    66
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
    67
  datatype stmt =
27024
fcab2dd46872 various code streamlining
haftmann
parents: 26972
diff changeset
    68
      NoStmt
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    69
    | Fun of string * (typscheme * ((iterm list * iterm) * (thm * bool)) list)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    70
    | Datatype of string * ((vname * sort) list * (string * itype list) list)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    71
    | Datatypecons of string * string
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    72
    | Class of class * (vname * ((class * string) list * (string * itype) list))
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    73
    | Classrel of class * class
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    74
    | Classparam of string * class
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    75
    | Classinst of (class * (string * (vname * sort) list))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    76
          * ((class * (string * (string * dict list list))) list
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    77
        * ((string * const) * (thm * bool)) list)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    78
  type program = stmt Graph.T
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    79
  val empty_funs: program -> string list
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    80
  val map_terms_bottom_up: (iterm -> iterm) -> iterm -> iterm
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    81
  val map_terms_stmt: (iterm -> iterm) -> stmt -> stmt
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    82
  val is_cons: program -> string -> bool
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    83
  val contr_classparam_typs: program -> string -> itype option list
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    84
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    85
  val consts_program: theory -> string list -> string list * (naming * program)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    86
  val cached_program: theory -> naming * program
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
    87
  val eval_conv: theory
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    88
    -> (term -> term * (naming -> program -> typscheme * iterm -> string list -> thm))
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    89
    -> cterm -> thm
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
    90
  val eval_term: theory
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    91
    -> (term -> term * (naming -> program -> typscheme * iterm -> string list -> 'a))
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    92
    -> term -> 'a
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    93
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    94
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27711
diff changeset
    95
structure Code_Thingol: CODE_THINGOL =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    96
struct
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    97
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    98
(** auxiliary **)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    99
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   100
fun unfoldl dest x =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   101
  case dest x
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   102
   of NONE => (x, [])
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   103
    | SOME (x1, x2) =>
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   104
        let val (x', xs') = unfoldl dest x1 in (x', xs' @ [x2]) end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   105
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   106
fun unfoldr dest x =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   107
  case dest x
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   108
   of NONE => ([], x)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   109
    | SOME (x1, x2) =>
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   110
        let val (xs', x') = unfoldr dest x2 in (x1::xs', x') end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   111
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   112
28369
196bd0305c0d fixed typo
haftmann
parents: 28350
diff changeset
   113
(** language core - types, patterns, expressions **)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   114
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   115
type vname = string;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   116
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   117
datatype dict =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   118
    DictConst of string * dict list list
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   119
  | DictVar of string list * (vname * (int * int));
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   120
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   121
datatype itype =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   122
    `%% of string * itype list
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   123
  | ITyVar of vname;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   124
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
   125
type const = string * (dict list list * itype list (*types of arguments*))
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
   126
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   127
datatype iterm =
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
   128
    IConst of const
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   129
  | IVar of vname
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   130
  | `$ of iterm * iterm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   131
  | `|-> of (vname * itype) * iterm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   132
  | ICase of ((iterm * itype) * (iterm * iterm) list) * iterm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   133
    (*see also signature*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   134
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   135
(*
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   136
  variable naming conventions
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   137
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   138
  bare names:
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   139
    variable names          v
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   140
    class names             class
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   141
    type constructor names  tyco
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   142
    datatype names          dtco
24837
cacc5744be75 clarified terminology
haftmann
parents: 24811
diff changeset
   143
    const names (general)   c (const)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   144
    constructor names       co
24837
cacc5744be75 clarified terminology
haftmann
parents: 24811
diff changeset
   145
    class parameter names   classparam
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   146
    arbitrary name          s
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   147
24837
cacc5744be75 clarified terminology
haftmann
parents: 24811
diff changeset
   148
    v, c, co, classparam also annotated with types etc.
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   149
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   150
  constructs:
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   151
    sort                    sort
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   152
    type parameters         vs
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   153
    type                    ty
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   154
    type schemes            tysm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   155
    term                    t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   156
    (term as pattern)       p
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   157
    instance (class, tyco)  inst
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   158
 *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   159
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   160
val op `$$ = Library.foldl (op `$);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   161
val op `|--> = Library.foldr (op `|->);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   162
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   163
val unfold_app = unfoldl
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   164
  (fn op `$ t => SOME t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   165
    | _ => NONE);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   166
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   167
val split_abs =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   168
  (fn (v, ty) `|-> (t as ICase (((IVar w, _), [(p, t')]), _)) =>
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   169
        if v = w then SOME (((v, SOME p), ty), t') else SOME (((v, NONE), ty), t)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   170
    | (v, ty) `|-> t => SOME (((v, NONE), ty), t)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   171
    | _ => NONE);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   172
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   173
val unfold_abs = unfoldr split_abs;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   174
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   175
val split_let = 
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   176
  (fn ICase (((td, ty), [(p, t)]), _) => SOME (((p, ty), td), t)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   177
    | _ => NONE);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   178
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   179
val unfold_let = unfoldr split_let;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   180
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   181
fun unfold_const_app t =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   182
 case unfold_app t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   183
  of (IConst c, ts) => SOME (c, ts)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   184
   | _ => NONE;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   185
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   186
fun fold_aiterms f (t as IConst _) = f t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   187
  | fold_aiterms f (t as IVar _) = f t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   188
  | fold_aiterms f (t1 `$ t2) = fold_aiterms f t1 #> fold_aiterms f t2
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   189
  | fold_aiterms f (t as _ `|-> t') = f t #> fold_aiterms f t'
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   190
  | fold_aiterms f (ICase (_, t)) = fold_aiterms f t;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   191
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   192
fun fold_constnames f =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   193
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   194
    fun add (IConst (c, _)) = f c
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   195
      | add _ = I;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   196
  in fold_aiterms add end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   197
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   198
fun fold_varnames f =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   199
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   200
    fun add (IVar v) = f v
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   201
      | add ((v, _) `|-> _) = f v
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   202
      | add _ = I;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   203
  in fold_aiterms add end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   204
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   205
fun fold_unbound_varnames f =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   206
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   207
    fun add _ (IConst _) = I
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   208
      | 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
   209
      | add vs (t1 `$ t2) = add vs t1 #> add vs t2
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   210
      | add vs ((v, _) `|-> t) = add (insert (op =) v vs) t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   211
      | add vs (ICase (_, t)) = add vs t;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   212
  in add [] end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   213
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   214
fun collapse_let (((v, ty), se), be as ICase (((IVar w, _), ds), _)) =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   215
      let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   216
        fun exists_v t = fold_unbound_varnames (fn w => fn b =>
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   217
          b orelse v = w) t false;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   218
      in if v = w andalso forall (fn (t1, t2) =>
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   219
        exists_v t1 orelse not (exists_v t2)) ds
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   220
        then ((se, ty), ds)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   221
        else ((se, ty), [(IVar v, be)])
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   222
      end
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   223
  | collapse_let (((v, ty), se), be) =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   224
      ((se, ty), [(IVar v, be)])
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   225
27711
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   226
fun eta_expand k (c as (_, (_, tys)), ts) =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   227
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   228
    val j = length ts;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   229
    val l = k - j;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   230
    val ctxt = (fold o fold_varnames) Name.declare ts Name.context;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   231
    val vs_tys = Name.names ctxt "a" ((curry Library.take l o curry Library.drop j) tys);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   232
  in vs_tys `|--> IConst c `$$ ts @ map (fn (v, _) => IVar v) vs_tys end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   233
24662
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   234
fun contains_dictvar t =
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   235
  let
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   236
    fun contains (DictConst (_, dss)) = (fold o fold) contains dss
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   237
      | contains (DictVar _) = K true;
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   238
  in
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   239
    fold_aiterms
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   240
      (fn IConst (_, (dss, _)) => (fold o fold) contains dss | _ => I) t false
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   241
  end;
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   242
  
25621
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   243
fun locally_monomorphic (IConst _) = false
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   244
  | locally_monomorphic (IVar _) = true
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   245
  | locally_monomorphic (t `$ _) = locally_monomorphic t
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   246
  | locally_monomorphic (_ `|-> t) = locally_monomorphic t
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   247
  | locally_monomorphic (ICase ((_, ds), _)) = exists (locally_monomorphic o snd) ds;
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   248
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   249
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   250
(** namings **)
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   251
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   252
(* policies *)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   253
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   254
local
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   255
  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
   256
  fun thyname_of_class thy =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   257
    thyname_of thy (ProofContext.query_class (ProofContext.init thy));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   258
  fun thyname_of_tyco thy =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   259
    thyname_of thy (Type.the_tags (Sign.tsig_of thy));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   260
  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
   261
   of [] => error ("no such instance: " ^ quote (snd inst ^ " :: " ^ fst inst))
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   262
    | thyname :: _ => thyname;
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   263
  fun thyname_of_const thy c = case AxClass.class_of_param thy c
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   264
   of SOME class => thyname_of_class thy class
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   265
    | NONE => (case Code.get_datatype_of_constr thy c
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   266
       of SOME dtco => thyname_of_tyco thy dtco
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   267
        | NONE => thyname_of thy (Consts.the_tags (Sign.consts_of thy)) c);
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   268
  fun namify thy get_basename get_thyname name =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   269
    let
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   270
      val prefix = get_thyname thy name;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   271
      val base = (Code_Name.purify_base true o get_basename) name;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   272
    in NameSpace.append prefix base end;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   273
in
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
fun namify_class thy = namify thy NameSpace.base thyname_of_class;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   276
fun namify_classrel thy = namify thy (fn (class1, class2) => 
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   277
  NameSpace.base class2 ^ "_" ^ NameSpace.base class1) (fn thy => thyname_of_class thy o fst);
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   278
  (*order fits nicely with composed projections*)
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   279
fun namify_tyco thy "fun" = "Pure.fun"
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   280
  | namify_tyco thy tyco = namify thy NameSpace.base thyname_of_tyco tyco;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   281
fun namify_instance thy = namify thy (fn (class, tyco) => 
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   282
  NameSpace.base class ^ "_" ^ NameSpace.base tyco) thyname_of_instance;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   283
fun namify_const thy = namify thy NameSpace.base thyname_of_const;
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
end; (* local *)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   286
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   287
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   288
(* data *)
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   289
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   290
structure StringPairTab = Code_Name.StringPairTab;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   291
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   292
datatype naming = Naming of {
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   293
  class: class Symtab.table * Name.context,
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   294
  classrel: string StringPairTab.table * Name.context,
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   295
  tyco: string Symtab.table * Name.context,
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   296
  instance: string StringPairTab.table * Name.context,
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   297
  const: string Symtab.table * Name.context
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   298
}
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   299
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   300
fun dest_Naming (Naming naming) = naming;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   301
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   302
val empty_naming = Naming {
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   303
  class = (Symtab.empty, Name.context),
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   304
  classrel = (StringPairTab.empty, Name.context),
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   305
  tyco = (Symtab.empty, Name.context),
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   306
  instance = (StringPairTab.empty, Name.context),
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   307
  const = (Symtab.empty, Name.context)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   308
};
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
local
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   311
  fun mk_naming (class, classrel, tyco, instance, const) =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   312
    Naming { class = class, classrel = classrel,
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   313
      tyco = tyco, instance = instance, const = const };
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   314
  fun map_naming f (Naming { class, classrel, tyco, instance, const }) =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   315
    mk_naming (f (class, classrel, tyco, instance, const));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   316
in
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   317
  fun map_class f = map_naming
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   318
    (fn (class, classrel, tyco, inst, const) =>
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   319
      (f class, classrel, tyco, inst, const));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   320
  fun map_classrel f = map_naming
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   321
    (fn (class, classrel, tyco, inst, const) =>
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   322
      (class, f classrel, tyco, inst, const));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   323
  fun map_tyco f = map_naming
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   324
    (fn (class, classrel, tyco, inst, const) =>
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   325
      (class, classrel, f tyco, inst, const));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   326
  fun map_instance f = map_naming
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   327
    (fn (class, classrel, tyco, inst, const) =>
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   328
      (class, classrel, tyco, f inst, const));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   329
  fun map_const f = map_naming
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   330
    (fn (class, classrel, tyco, inst, const) =>
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   331
      (class, classrel, tyco, inst, f const));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   332
end; (*local*)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   333
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   334
fun add_variant update (thing, name) (tab, used) =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   335
  let
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   336
    val (name', used') = yield_singleton Name.variants name used;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   337
    val tab' = update (thing, name') tab;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   338
  in (tab', used') end;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   339
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   340
fun declare thy mapp lookup update namify thing =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   341
  mapp (add_variant update (thing, namify thy thing))
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   342
  #> `(fn naming => the (lookup naming thing));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   343
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   344
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   345
(* lookup and declare *)
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   346
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   347
local
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   348
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   349
val suffix_class = "class";
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   350
val suffix_classrel = "classrel"
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   351
val suffix_tyco = "tyco";
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   352
val suffix_instance = "inst";
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   353
val suffix_const = "const";
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   354
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   355
fun add_suffix nsp NONE = NONE
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   356
  | add_suffix nsp (SOME name) = SOME (NameSpace.append name nsp);
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   357
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   358
in
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   359
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   360
val lookup_class = add_suffix suffix_class
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   361
  oo Symtab.lookup o fst o #class o dest_Naming;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   362
val lookup_classrel = add_suffix suffix_classrel
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   363
  oo StringPairTab.lookup o fst o #classrel o dest_Naming;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   364
val lookup_tyco = add_suffix suffix_tyco
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   365
  oo Symtab.lookup o fst o #tyco o dest_Naming;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   366
val lookup_instance = add_suffix suffix_instance
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   367
  oo StringPairTab.lookup o fst o #instance o dest_Naming;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   368
val lookup_const = add_suffix suffix_const
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   369
  oo Symtab.lookup o fst o #const o dest_Naming;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   370
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   371
fun declare_class thy = declare thy map_class
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   372
  lookup_class Symtab.update_new namify_class;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   373
fun declare_classrel thy = declare thy map_classrel
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   374
  lookup_classrel StringPairTab.update_new namify_classrel;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   375
fun declare_tyco thy = declare thy map_tyco
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   376
  lookup_tyco Symtab.update_new namify_tyco;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   377
fun declare_instance thy = declare thy map_instance
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   378
  lookup_instance StringPairTab.update_new namify_instance;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   379
fun declare_const thy = declare thy map_const
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   380
  lookup_const Symtab.update_new namify_const;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   381
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   382
val unfold_fun = unfoldr
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   383
  (fn "Pure.fun.tyco" `%% [ty1, ty2] => SOME (ty1, ty2)
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   384
    | _ => NONE); (*depends on suffix_tyco and namify_tyco!*)
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   385
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   386
end; (* local *)
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   387
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   388
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   389
(** statements, abstract programs **)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   390
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   391
type typscheme = (vname * sort) list * itype;
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   392
datatype stmt =
27024
fcab2dd46872 various code streamlining
haftmann
parents: 26972
diff changeset
   393
    NoStmt
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   394
  | Fun of string * (typscheme * ((iterm list * iterm) * (thm * bool)) list)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   395
  | Datatype of string * ((vname * sort) list * (string * itype list) list)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   396
  | Datatypecons of string * string
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   397
  | Class of class * (vname * ((class * string) list * (string * itype) list))
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   398
  | Classrel of class * class
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   399
  | Classparam of string * class
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   400
  | Classinst of (class * (string * (vname * sort) list))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   401
        * ((class * (string * (string * dict list list))) list
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28054
diff changeset
   402
      * ((string * const) * (thm * bool)) list);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   403
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   404
type program = stmt Graph.T;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   405
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   406
fun empty_funs program =
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   407
  Graph.fold (fn (name, (Fun (c, (_, [])), _)) => cons c
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   408
               | _ => I) program [];
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   409
27711
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   410
fun map_terms_bottom_up f (t as IConst _) = f t
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   411
  | map_terms_bottom_up f (t as IVar _) = f t
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   412
  | map_terms_bottom_up f (t1 `$ t2) = f
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   413
      (map_terms_bottom_up f t1 `$ map_terms_bottom_up f t2)
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   414
  | map_terms_bottom_up f ((v, ty) `|-> t) = f
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   415
      ((v, ty) `|-> map_terms_bottom_up f t)
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   416
  | map_terms_bottom_up f (ICase (((t, ty), ps), t0)) = f
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   417
      (ICase (((map_terms_bottom_up f t, ty), (map o pairself)
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   418
        (map_terms_bottom_up f) ps), map_terms_bottom_up f t0));
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   419
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   420
fun map_terms_stmt f NoStmt = NoStmt
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   421
  | 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
   422
      (fn (ts, t) => (map f ts, f t)) eqs))
27711
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   423
  | map_terms_stmt f (stmt as Datatype _) = stmt
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   424
  | map_terms_stmt f (stmt as Datatypecons _) = stmt
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   425
  | map_terms_stmt f (stmt as Class _) = stmt
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   426
  | map_terms_stmt f (stmt as Classrel _) = stmt
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   427
  | map_terms_stmt f (stmt as Classparam _) = stmt
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   428
  | map_terms_stmt f (Classinst (arity, (superarities, classparms))) =
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   429
      Classinst (arity, (superarities, (map o apfst o apsnd) (fn const =>
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   430
        case f (IConst const) of IConst const' => const') classparms));
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   431
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   432
fun is_cons program name = case Graph.get_node program name
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   433
 of Datatypecons _ => true
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   434
  | _ => false;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   435
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   436
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
   437
 of Classparam (_, class) => let
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   438
        val Class (_, (_, (_, params))) = Graph.get_node program class;
25621
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   439
        val SOME ty = AList.lookup (op =) params name;
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   440
        val (tys, res_ty) = unfold_fun ty;
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   441
        fun no_tyvar (_ `%% tys) = forall no_tyvar tys
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   442
          | no_tyvar (ITyVar _) = false;
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   443
      in if no_tyvar res_ty
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   444
        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
   445
        else []
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   446
      end
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   447
  | _ => [];
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   448
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   449
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   450
(** translation kernel **)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   451
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   452
fun ensure_stmt lookup declare generate thing (dep, (naming, program)) =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   453
  let
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   454
    fun add_dep name = case dep of NONE => I
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   455
      | SOME dep => Graph.add_edge (dep, name);
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   456
    val (name, naming') = case lookup naming thing
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   457
     of SOME name => (name, naming)
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   458
      | NONE => declare thing naming;
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   459
  in case try (Graph.get_node program) name
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   460
   of SOME stmt => program
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   461
        |> add_dep name
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   462
        |> pair naming'
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   463
        |> pair dep
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   464
        |> pair name
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   465
    | NONE => program
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   466
        |> Graph.default_node (name, NoStmt)
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   467
        |> add_dep name
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   468
        |> pair naming'
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   469
        |> curry generate (SOME name)
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   470
        ||> snd
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   471
        |-> (fn stmt => (apsnd o Graph.map_node name) (K stmt))
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   472
        |> pair dep
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   473
        |> pair name
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   474
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   475
26972
haftmann
parents: 26939
diff changeset
   476
fun not_wellsorted thy thm ty sort e =
haftmann
parents: 26939
diff changeset
   477
  let
haftmann
parents: 26939
diff changeset
   478
    val err_class = Sorts.class_error (Syntax.pp_global thy) e;
haftmann
parents: 26939
diff changeset
   479
    val err_thm = case thm
haftmann
parents: 26939
diff changeset
   480
     of SOME thm => "\n(in defining equation " ^ Display.string_of_thm thm ^ ")" | NONE => "";
haftmann
parents: 26939
diff changeset
   481
    val err_typ = "Type " ^ Syntax.string_of_typ_global thy ty ^ " not of sort "
haftmann
parents: 26939
diff changeset
   482
      ^ Syntax.string_of_sort_global thy sort;
haftmann
parents: 26939
diff changeset
   483
  in error ("Wellsortedness error" ^ err_thm ^ ":\n" ^ err_typ ^ "\n" ^ err_class) end;
haftmann
parents: 26939
diff changeset
   484
haftmann
parents: 26939
diff changeset
   485
fun ensure_class thy (algbr as (_, algebra)) funcgr class =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   486
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   487
    val superclasses = (Sorts.certify_sort algebra o Sorts.super_classes algebra) class;
24969
b38527eefb3b removed obsolete AxClass.params_of_class;
wenzelm
parents: 24918
diff changeset
   488
    val cs = #params (AxClass.get_info thy class);
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   489
    val stmt_class =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   490
      fold_map (fn superclass => ensure_class thy algbr funcgr superclass
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   491
        ##>> ensure_classrel thy algbr funcgr (class, superclass)) superclasses
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   492
      ##>> fold_map (fn (c, ty) => ensure_const thy algbr funcgr c
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   493
        ##>> translate_typ thy algbr funcgr ty) cs
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   494
      #>> (fn info => Class (class, (unprefix "'" Name.aT, info)))
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   495
  in ensure_stmt lookup_class (declare_class thy) stmt_class class end
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   496
and ensure_classrel thy algbr funcgr (subclass, superclass) =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   497
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   498
    val stmt_classrel =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   499
      ensure_class thy algbr funcgr subclass
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   500
      ##>> ensure_class thy algbr funcgr superclass
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   501
      #>> Classrel;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   502
  in ensure_stmt lookup_classrel (declare_classrel thy) stmt_classrel (subclass, superclass) end
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   503
and ensure_tyco thy algbr funcgr tyco =
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   504
  let
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   505
    val stmt_datatype =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   506
      let
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   507
        val (vs, cos) = Code.get_datatype thy tyco;
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   508
      in
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   509
        fold_map (translate_tyvar_sort thy algbr funcgr) vs
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   510
        ##>> fold_map (fn (c, tys) =>
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   511
          ensure_const thy algbr funcgr c
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   512
          ##>> fold_map (translate_typ thy algbr funcgr) tys) cos
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   513
        #>> (fn info => Datatype (tyco, info))
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   514
      end;
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   515
  in ensure_stmt lookup_tyco (declare_tyco thy) stmt_datatype tyco end
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   516
and translate_tyvar_sort thy (algbr as (proj_sort, _)) funcgr (v, sort) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   517
  fold_map (ensure_class thy algbr funcgr) (proj_sort sort)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   518
  #>> (fn sort => (unprefix "'" v, sort))
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   519
and translate_typ thy algbr funcgr (TFree v_sort) =
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   520
      translate_tyvar_sort thy algbr funcgr v_sort
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   521
      #>> (fn (v, sort) => ITyVar v)
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   522
  | translate_typ thy algbr funcgr (Type (tyco, tys)) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   523
      ensure_tyco thy algbr funcgr tyco
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   524
      ##>> fold_map (translate_typ thy algbr funcgr) tys
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   525
      #>> (fn (tyco, tys) => tyco `%% tys)
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   526
and translate_dicts thy (algbr as (proj_sort, algebra)) funcgr thm (ty, sort) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   527
  let
26939
1035c89b4c02 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26011
diff changeset
   528
    val pp = Syntax.pp_global thy;
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   529
    datatype typarg =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   530
        Global of (class * string) * typarg list list
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   531
      | Local of (class * class) list * (string * (int * sort));
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   532
    fun class_relation (Global ((_, tyco), yss), _) class =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   533
          Global ((class, tyco), yss)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   534
      | class_relation (Local (classrels, v), subclass) superclass =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   535
          Local ((subclass, superclass) :: classrels, v);
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   536
    fun type_constructor tyco yss class =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   537
      Global ((class, tyco), (map o map) fst yss);
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   538
    fun type_variable (TFree (v, sort)) =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   539
      let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   540
        val sort' = proj_sort sort;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   541
      in map_index (fn (n, class) => (Local ([], (v, (n, sort'))), class)) sort' end;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   542
    val typargs = Sorts.of_sort_derivation pp algebra
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   543
      {class_relation = class_relation, type_constructor = type_constructor,
26972
haftmann
parents: 26939
diff changeset
   544
       type_variable = type_variable} (ty, proj_sort sort)
haftmann
parents: 26939
diff changeset
   545
      handle Sorts.CLASS_ERROR e => not_wellsorted thy thm ty sort e;
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   546
    fun mk_dict (Global (inst, yss)) =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   547
          ensure_inst thy algbr funcgr inst
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   548
          ##>> (fold_map o fold_map) mk_dict yss
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   549
          #>> (fn (inst, dss) => DictConst (inst, dss))
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   550
      | mk_dict (Local (classrels, (v, (k, sort)))) =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   551
          fold_map (ensure_classrel thy algbr funcgr) classrels
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   552
          #>> (fn classrels => DictVar (classrels, (unprefix "'" v, (k, length sort))))
27422
haftmann
parents: 27103
diff changeset
   553
  in fold_map mk_dict typargs end
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   554
and translate_eq thy algbr funcgr (thm, linear) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   555
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   556
    val (args, rhs) = (apfst (snd o strip_comb) o Logic.dest_equals
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   557
      o Logic.unvarify o prop_of) thm;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   558
  in
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   559
    fold_map (translate_term thy algbr funcgr (SOME thm)) args
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   560
    ##>> translate_term thy algbr funcgr (SOME thm) rhs
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28054
diff changeset
   561
    #>> rpair (thm, linear)
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   562
  end
26972
haftmann
parents: 26939
diff changeset
   563
and ensure_inst thy (algbr as (_, algebra)) funcgr (class, tyco) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   564
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   565
    val superclasses = (Sorts.certify_sort algebra o Sorts.super_classes algebra) class;
24969
b38527eefb3b removed obsolete AxClass.params_of_class;
wenzelm
parents: 24918
diff changeset
   566
    val classparams = these (try (#params o AxClass.get_info thy) class);
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   567
    val vs = Name.names Name.context "'a" (Sorts.mg_domain algebra tyco [class]);
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   568
    val sorts' = Sorts.mg_domain (Sign.classes_of thy) tyco [class];
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   569
    val vs' = map2 (fn (v, sort1) => fn sort2 => (v,
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   570
      Sorts.inter_sort (Sign.classes_of thy) (sort1, sort2))) vs sorts';
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   571
    val arity_typ = Type (tyco, map TFree vs);
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   572
    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
   573
    fun translate_superarity superclass =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   574
      ensure_class thy algbr funcgr superclass
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   575
      ##>> ensure_classrel thy algbr funcgr (class, superclass)
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   576
      ##>> translate_dicts thy algbr funcgr NONE (arity_typ, [superclass])
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   577
      #>> (fn ((superclass, classrel), [DictConst (inst, dss)]) =>
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   578
            (superclass, (classrel, (inst, dss))));
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   579
    fun translate_classparam_inst (c, ty) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   580
      let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   581
        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
   582
        val thm = AxClass.unoverload_conv thy (Thm.cterm_of thy c_inst);
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   583
        val c_ty = (apsnd Logic.unvarifyT o dest_Const o snd
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   584
          o Logic.dest_equals o Thm.prop_of) thm;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   585
      in
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   586
        ensure_const thy algbr funcgr c
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   587
        ##>> translate_const thy algbr funcgr (SOME thm) c_ty
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28054
diff changeset
   588
        #>> (fn (c, IConst c_inst) => ((c, c_inst), (thm, true)))
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   589
      end;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   590
    val stmt_inst =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   591
      ensure_class thy algbr funcgr class
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   592
      ##>> ensure_tyco thy algbr funcgr tyco
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   593
      ##>> fold_map (translate_tyvar_sort thy algbr funcgr) vs
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   594
      ##>> fold_map translate_superarity superclasses
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   595
      ##>> fold_map translate_classparam_inst classparams
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   596
      #>> (fn ((((class, tyco), arity), superarities), classparams) =>
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   597
             Classinst ((class, (tyco, arity)), (superarities, classparams)));
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   598
  in ensure_stmt lookup_instance (declare_instance thy) stmt_inst (class, tyco) end
26972
haftmann
parents: 26939
diff changeset
   599
and ensure_const thy algbr funcgr c =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   600
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   601
    fun stmt_datatypecons tyco =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   602
      ensure_tyco thy algbr funcgr tyco
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   603
      #>> (fn tyco => Datatypecons (c, tyco));
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   604
    fun stmt_classparam class =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   605
      ensure_class thy algbr funcgr class
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   606
      #>> (fn class => Classparam (c, class));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   607
    fun stmt_fun ((vs, raw_ty), raw_thms) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   608
      let
26972
haftmann
parents: 26939
diff changeset
   609
        val ty = Logic.unvarifyT raw_ty;
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   610
        val thms = if (null o Term.typ_tfrees) ty orelse (null o fst o strip_type) ty
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   611
          then raw_thms
28423
9fc3befd8191 clarified codegen interfaces
haftmann
parents: 28369
diff changeset
   612
          else (map o apfst) (Code_Unit.expand_eta thy 1) raw_thms;
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   613
      in
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   614
        fold_map (translate_tyvar_sort thy algbr funcgr) vs
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   615
        ##>> translate_typ thy algbr funcgr ty
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   616
        ##>> fold_map (translate_eq thy algbr funcgr) thms
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   617
        #>> (fn info => Fun (c, info))
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   618
      end;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   619
    val stmt_const = case Code.get_datatype_of_constr thy c
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   620
     of SOME tyco => stmt_datatypecons tyco
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   621
      | NONE => (case AxClass.class_of_param thy c
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   622
         of SOME class => stmt_classparam class
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   623
          | NONE => stmt_fun (Code_Funcgr.typ funcgr c, Code_Funcgr.eqns funcgr c))
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   624
  in ensure_stmt lookup_const (declare_const thy) stmt_const c end
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   625
and translate_term thy algbr funcgr thm (Const (c, ty)) =
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   626
      translate_app thy algbr funcgr thm ((c, ty), [])
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   627
  | translate_term thy algbr funcgr thm (Free (v, _)) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   628
      pair (IVar v)
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   629
  | translate_term thy algbr funcgr thm (Abs (abs as (_, ty, _))) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   630
      let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   631
        val (v, t) = Syntax.variant_abs abs;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   632
      in
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   633
        translate_typ thy algbr funcgr ty
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   634
        ##>> translate_term thy algbr funcgr thm t
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   635
        #>> (fn (ty, t) => (v, ty) `|-> t)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   636
      end
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   637
  | translate_term thy algbr funcgr thm (t as _ $ _) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   638
      case strip_comb t
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   639
       of (Const (c, ty), ts) =>
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   640
            translate_app thy algbr funcgr thm ((c, ty), ts)
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   641
        | (t', ts) =>
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   642
            translate_term thy algbr funcgr thm t'
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   643
            ##>> fold_map (translate_term thy algbr funcgr thm) ts
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   644
            #>> (fn (t, ts) => t `$$ ts)
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   645
and translate_const thy algbr funcgr thm (c, ty) =
26972
haftmann
parents: 26939
diff changeset
   646
  let
haftmann
parents: 26939
diff changeset
   647
    val tys = Sign.const_typargs thy (c, ty);
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27711
diff changeset
   648
    val sorts = (map snd o fst o Code_Funcgr.typ funcgr) c;
26972
haftmann
parents: 26939
diff changeset
   649
    val tys_args = (fst o Term.strip_type) ty;
haftmann
parents: 26939
diff changeset
   650
  in
haftmann
parents: 26939
diff changeset
   651
    ensure_const thy algbr funcgr c
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   652
    ##>> fold_map (translate_dicts thy algbr funcgr thm) (tys ~~ sorts)
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   653
    ##>> fold_map (translate_typ thy algbr funcgr) tys_args
26972
haftmann
parents: 26939
diff changeset
   654
    #>> (fn ((c, iss), tys) => IConst (c, (iss, tys)))
haftmann
parents: 26939
diff changeset
   655
  end
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   656
and translate_app_default thy algbr funcgr thm (c_ty, ts) =
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   657
  translate_const thy algbr funcgr thm c_ty
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   658
  ##>> fold_map (translate_term thy algbr funcgr thm) ts
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   659
  #>> (fn (t, ts) => t `$$ ts)
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   660
and translate_case thy algbr funcgr thm n cases (app as ((c, ty), ts)) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   661
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   662
    val (tys, _) =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   663
      (chop (1 + (if null cases then 1 else length cases)) o fst o strip_type) ty;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   664
    val dt = nth ts n;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   665
    val dty = nth tys n;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   666
    fun is_undefined (Const (c, _)) = Code.is_undefined thy c
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   667
      | is_undefined _ = false;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   668
    fun mk_case (co, n) t =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   669
      let
28708
a1a436f09ec6 explicit check for pattern discipline before code translation
haftmann
parents: 28706
diff changeset
   670
        val _ = if (is_some o Code.get_datatype_of_constr thy) co then ()
a1a436f09ec6 explicit check for pattern discipline before code translation
haftmann
parents: 28706
diff changeset
   671
          else error ("Non-constructor " ^ quote co
a1a436f09ec6 explicit check for pattern discipline before code translation
haftmann
parents: 28706
diff changeset
   672
            ^ " encountered in case pattern"
a1a436f09ec6 explicit check for pattern discipline before code translation
haftmann
parents: 28706
diff changeset
   673
            ^ (case thm of NONE => ""
a1a436f09ec6 explicit check for pattern discipline before code translation
haftmann
parents: 28706
diff changeset
   674
              | SOME thm => ", in equation\n" ^ Display.string_of_thm thm))
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   675
        val (vs, body) = Term.strip_abs_eta n t;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   676
        val selector = list_comb (Const (co, map snd vs ---> dty), map Free vs);
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   677
      in if is_undefined body then NONE else SOME (selector, body) end;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   678
    fun mk_ds [] =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   679
          let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   680
            val ([v_ty], body) = Term.strip_abs_eta 1 (the_single (nth_drop n ts))
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   681
          in [(Free v_ty, body)] end
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   682
      | mk_ds cases = map_filter (uncurry mk_case)
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27711
diff changeset
   683
          (AList.make (Code_Unit.no_args thy) cases ~~ nth_drop n ts);
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   684
  in
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   685
    translate_term thy algbr funcgr thm dt
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   686
    ##>> translate_typ thy algbr funcgr dty
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   687
    ##>> fold_map (fn (pat, body) => translate_term thy algbr funcgr thm pat
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   688
          ##>> translate_term thy algbr funcgr thm body) (mk_ds cases)
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   689
    ##>> translate_app_default thy algbr funcgr thm app
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   690
    #>> (fn (((dt, dty), ds), t0) => ICase (((dt, dty), ds), t0))
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   691
  end
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   692
and translate_app thy algbr funcgr thm ((c, ty), ts) = case Code.get_case_data thy c
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   693
 of SOME (n, cases) => let val i = 1 + (if null cases then 1 else length cases) in
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   694
      if length ts < i then
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   695
        let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   696
          val k = length ts;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   697
          val tys = (curry Library.take (i - k) o curry Library.drop k o fst o strip_type) ty;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   698
          val ctxt = (fold o fold_aterms)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   699
            (fn Free (v, _) => Name.declare v | _ => I) ts Name.context;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   700
          val vs = Name.names ctxt "a" tys;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   701
        in
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   702
          fold_map (translate_typ thy algbr funcgr) tys
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   703
          ##>> translate_case thy algbr funcgr thm n cases ((c, ty), ts @ map Free vs)
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   704
          #>> (fn (tys, t) => map2 (fn (v, _) => pair v) vs tys `|--> t)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   705
        end
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   706
      else if length ts > i then
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   707
        translate_case thy algbr funcgr thm n cases ((c, ty), Library.take (i, ts))
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   708
        ##>> fold_map (translate_term thy algbr funcgr thm) (Library.drop (i, ts))
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   709
        #>> (fn (t, ts) => t `$$ ts)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   710
      else
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   711
        translate_case thy algbr funcgr thm n cases ((c, ty), ts)
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   712
      end
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   713
  | NONE => translate_app_default thy algbr funcgr thm ((c, ty), ts);
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   714
25969
haftmann
parents: 25621
diff changeset
   715
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   716
(** generated programs **)
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   717
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   718
(* store *)
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   719
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   720
structure Program = CodeDataFun
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   721
(
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   722
  type T = naming * program;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   723
  val empty = (empty_naming, Graph.empty);
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   724
  fun purge thy cs (naming, program) =
27609
b23c9ad0fe7d tuned code theorem bookkeeping
haftmann
parents: 27422
diff changeset
   725
    let
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   726
      val names_delete = cs
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   727
        |> map_filter (lookup_const naming)
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   728
        |> filter (can (Graph.get_node program))
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   729
        |> Graph.all_preds program;
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   730
      val program' = Graph.del_nodes names_delete program;
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   731
    in (naming, program') end;
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   732
);
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
val cached_program = Program.get;
25969
haftmann
parents: 25621
diff changeset
   735
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   736
fun generate thy funcgr f name =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   737
  Program.change_yield thy (fn naming_program => (NONE, naming_program)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   738
    |> f thy (Code.operational_algebra thy) funcgr name
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   739
    |-> (fn name => fn (_, naming_program) => (name, naming_program)));
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   740
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   741
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   742
(* program generation *)
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   743
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   744
fun consts_program thy cs =
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   745
  let
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   746
    fun project_consts cs (naming, program) =
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   747
      let
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   748
        val cs_all = Graph.all_succs program cs;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   749
      in (cs, (naming, Graph.subgraph (member (op =) cs_all) program)) end;
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   750
    fun generate_consts thy algebra funcgr =
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   751
      fold_map (ensure_const thy algebra funcgr);
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   752
  in
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27711
diff changeset
   753
    generate thy (Code_Funcgr.make thy cs) generate_consts cs
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   754
    |-> project_consts
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   755
  end;
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   756
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   757
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   758
(* value evaluation *)
25969
haftmann
parents: 25621
diff changeset
   759
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   760
fun ensure_value thy algbr funcgr t = 
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   761
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   762
    val ty = fastype_of t;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   763
    val vs = fold_term_types (K (fold_atyps (insert (eq_fst op =)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   764
      o dest_TFree))) t [];
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   765
    val stmt_value =
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   766
      fold_map (translate_tyvar_sort thy algbr funcgr) vs
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   767
      ##>> translate_typ thy algbr funcgr ty
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   768
      ##>> translate_term thy algbr funcgr NONE t
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   769
      #>> (fn ((vs, ty), t) => Fun
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   770
        (Term.dummy_patternN, ((vs, ty), [(([], t), (Drule.dummy_thm, true))])));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   771
    fun term_value (dep, (naming, program1)) =
25969
haftmann
parents: 25621
diff changeset
   772
      let
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   773
        val Fun (_, ((vs, ty), [(([], t), _)])) =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   774
          Graph.get_node program1 Term.dummy_patternN;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   775
        val deps = Graph.imm_succs program1 Term.dummy_patternN;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   776
        val program2 = Graph.del_nodes [Term.dummy_patternN] program1;
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   777
        val deps_all = Graph.all_succs program2 deps;
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   778
        val program3 = Graph.subgraph (member (op =) deps_all) program2;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   779
      in (((naming, program3), (((vs, ty), t), deps)), (dep, (naming, program2))) end;
26011
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   780
  in
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   781
    ensure_stmt ((K o K) NONE) pair stmt_value Term.dummy_patternN
26011
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   782
    #> snd
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   783
    #> term_value
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   784
  end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   785
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   786
fun eval eval_kind thy evaluator =
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   787
  let
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   788
    fun evaluator'' evaluator''' funcgr t =
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   789
      let
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   790
        val (((naming, program), (vs_ty_t, deps)), _) = generate thy funcgr ensure_value t;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   791
      in evaluator''' naming program vs_ty_t deps end;
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   792
    fun evaluator' t =
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   793
      let
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   794
        val (t', evaluator''') = evaluator t;
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   795
      in (t', evaluator'' evaluator''') end;
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   796
  in eval_kind thy evaluator' end
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   797
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27711
diff changeset
   798
fun eval_conv thy = eval Code_Funcgr.eval_conv thy;
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27711
diff changeset
   799
fun eval_term thy = eval Code_Funcgr.eval_term thy;
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   800
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   801
end; (*struct*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   802
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   803
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27711
diff changeset
   804
structure Basic_Code_Thingol: BASIC_CODE_THINGOL = Code_Thingol;