src/Tools/code/code_thingol.ML
author haftmann
Wed, 28 May 2008 12:24:48 +0200
changeset 27001 d21bb9f73364
parent 26972 bde4289d793d
child 27024 fcab2dd46872
permissions -rw-r--r--
fixed utterly wrong print mode handling
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
infixr 6 `->;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    11
infixr 6 `-->;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    12
infix 4 `$;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    13
infix 4 `$$;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    14
infixr 3 `|->;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    15
infixr 3 `|-->;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    16
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    17
signature BASIC_CODE_THINGOL =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    18
sig
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    19
  type vname = string;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    20
  datatype dict =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    21
      DictConst of string * dict list list
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    22
    | DictVar of string list * (vname * (int * int));
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    23
  datatype itype =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    24
      `%% of string * itype list
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    25
    | ITyVar of vname;
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
    26
  type const = string * (dict list list * itype list (*types of arguments*))
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    27
  datatype iterm =
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
    28
      IConst of const
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    29
    | IVar of vname
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    30
    | `$ of iterm * iterm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    31
    | `|-> of (vname * itype) * iterm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    32
    | ICase of ((iterm * itype) * (iterm * iterm) list) * iterm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    33
        (*((term, type), [(selector pattern, body term )]), primitive term)*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    34
  val `-> : itype * itype -> itype;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    35
  val `--> : itype list * itype -> itype;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    36
  val `$$ : iterm * iterm list -> iterm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    37
  val `|--> : (vname * itype) list * iterm -> iterm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    38
  type typscheme = (vname * sort) list * itype;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    39
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    40
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    41
signature CODE_THINGOL =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    42
sig
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    43
  include BASIC_CODE_THINGOL;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    44
  val unfoldl: ('a -> ('a * 'b) option) -> 'a -> 'a * 'b list;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    45
  val unfoldr: ('a -> ('b * 'a) option) -> 'a -> 'b list * 'a;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    46
  val unfold_fun: itype -> itype list * itype;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    47
  val unfold_app: iterm -> iterm * iterm list;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    48
  val split_abs: iterm -> (((vname * iterm option) * itype) * iterm) option;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    49
  val unfold_abs: iterm -> ((vname * iterm option) * itype) list * iterm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    50
  val split_let: iterm -> (((iterm * itype) * iterm) * iterm) option;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    51
  val unfold_let: iterm -> ((iterm * itype) * iterm) list * iterm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    52
  val unfold_const_app: iterm ->
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    53
    ((string * (dict list list * itype list)) * iterm list) option;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    54
  val collapse_let: ((vname * itype) * iterm) * iterm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    55
    -> (iterm * itype) * (iterm * iterm) list;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    56
  val eta_expand: (string * (dict list list * itype list)) * iterm list -> int -> iterm;
24662
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
    57
  val contains_dictvar: iterm -> bool;
25621
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
    58
  val locally_monomorphic: iterm -> bool;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    59
  val fold_constnames: (string -> 'a -> 'a) -> iterm -> 'a -> 'a;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    60
  val fold_varnames: (string -> 'a -> 'a) -> iterm -> 'a -> 'a;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    61
  val fold_unbound_varnames: (string -> 'a -> 'a) -> iterm -> 'a -> 'a;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    62
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
    63
  datatype stmt =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    64
      Bot
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
    65
    | Fun of typscheme * ((iterm list * iterm) * thm) list
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    66
    | Datatype of (vname * sort) list * (string * itype list) list
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    67
    | Datatypecons of string
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24662
diff changeset
    68
    | Class of vname * ((class * string) list * (string * itype) list)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    69
    | Classrel of class * class
24837
cacc5744be75 clarified terminology
haftmann
parents: 24811
diff changeset
    70
    | Classparam of class
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    71
    | Classinst of (class * (string * (vname * sort) list))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    72
          * ((class * (string * (string * dict list list))) list
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
    73
        * ((string * const) * thm) list);
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
    74
  type code = stmt Graph.T;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    75
  val empty_code: code;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    76
  val merge_code: code * code -> code;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    77
  val project_code: bool (*delete empty funs*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    78
    -> string list (*hidden*) -> string list option (*selected*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    79
    -> code -> code;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    80
  val empty_funs: code -> string list;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    81
  val is_cons: code -> string -> bool;
25621
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
    82
  val contr_classparam_typs: code -> string -> itype option list;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    83
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
    84
  type transact;
26972
haftmann
parents: 26939
diff changeset
    85
  val ensure_const: theory -> (sort -> sort) * Sorts.algebra -> CodeFuncgr.T
haftmann
parents: 26939
diff changeset
    86
    -> string -> transact -> string * transact;
haftmann
parents: 26939
diff changeset
    87
  val ensure_value: theory -> (sort -> sort) * Sorts.algebra -> CodeFuncgr.T
haftmann
parents: 26939
diff changeset
    88
    -> term -> transact -> (code * ((typscheme * iterm) * string list)) * transact;
25969
haftmann
parents: 25621
diff changeset
    89
  val transact: theory -> CodeFuncgr.T
26972
haftmann
parents: 26939
diff changeset
    90
    -> (theory -> (sort -> sort) * Sorts.algebra -> CodeFuncgr.T
25969
haftmann
parents: 25621
diff changeset
    91
      -> transact -> 'a * transact) -> code -> 'a * code;
26011
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
    92
  val add_value_stmt: iterm * itype -> code -> code;
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
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    95
structure CodeThingol: CODE_THINGOL =
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
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   113
(** language core - types, pattern, expressions **)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   114
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   115
(* language representation *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   116
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   117
type vname = string;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   118
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   119
datatype dict =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   120
    DictConst of string * dict list list
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   121
  | DictVar of string list * (vname * (int * int));
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   122
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   123
datatype itype =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   124
    `%% of string * itype list
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   125
  | ITyVar of vname;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   126
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
   127
type const = string * (dict list list * itype list (*types of arguments*))
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
   128
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   129
datatype iterm =
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
   130
    IConst of const
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   131
  | IVar of vname
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   132
  | `$ of iterm * iterm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   133
  | `|-> of (vname * itype) * iterm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   134
  | ICase of ((iterm * itype) * (iterm * iterm) list) * iterm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   135
    (*see also signature*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   136
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   137
(*
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   138
  variable naming conventions
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   139
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   140
  bare names:
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   141
    variable names          v
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   142
    class names             class
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   143
    type constructor names  tyco
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   144
    datatype names          dtco
24837
cacc5744be75 clarified terminology
haftmann
parents: 24811
diff changeset
   145
    const names (general)   c (const)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   146
    constructor names       co
24837
cacc5744be75 clarified terminology
haftmann
parents: 24811
diff changeset
   147
    class parameter names   classparam
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   148
    arbitrary name          s
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   149
24837
cacc5744be75 clarified terminology
haftmann
parents: 24811
diff changeset
   150
    v, c, co, classparam also annotated with types etc.
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   151
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   152
  constructs:
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   153
    sort                    sort
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   154
    type parameters         vs
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   155
    type                    ty
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   156
    type schemes            tysm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   157
    term                    t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   158
    (term as pattern)       p
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   159
    instance (class, tyco)  inst
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   160
 *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   161
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   162
fun ty1 `-> ty2 = "fun" `%% [ty1, ty2];
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   163
val op `--> = Library.foldr (op `->);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   164
val op `$$ = Library.foldl (op `$);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   165
val op `|--> = Library.foldr (op `|->);
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 unfold_fun = unfoldr
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   168
  (fn "fun" `%% [ty1, ty2] => SOME (ty1, ty2)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   169
    | _ => NONE);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   170
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   171
val unfold_app = unfoldl
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   172
  (fn op `$ t => SOME t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   173
    | _ => NONE);
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_abs =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   176
  (fn (v, ty) `|-> (t as ICase (((IVar w, _), [(p, t')]), _)) =>
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   177
        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
   178
    | (v, ty) `|-> t => SOME (((v, NONE), ty), t)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   179
    | _ => NONE);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   180
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   181
val unfold_abs = unfoldr split_abs;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   182
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   183
val split_let = 
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   184
  (fn ICase (((td, ty), [(p, t)]), _) => SOME (((p, ty), td), t)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   185
    | _ => NONE);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   186
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   187
val unfold_let = unfoldr split_let;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   188
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   189
fun unfold_const_app t =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   190
 case unfold_app t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   191
  of (IConst c, ts) => SOME (c, ts)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   192
   | _ => NONE;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   193
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   194
fun fold_aiterms f (t as IConst _) = f t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   195
  | fold_aiterms f (t as IVar _) = f t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   196
  | fold_aiterms f (t1 `$ t2) = fold_aiterms f t1 #> fold_aiterms f t2
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   197
  | fold_aiterms f (t as _ `|-> t') = f t #> fold_aiterms f t'
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   198
  | fold_aiterms f (ICase (_, t)) = fold_aiterms f t;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   199
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   200
fun fold_constnames f =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   201
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   202
    fun add (IConst (c, _)) = f c
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   203
      | add _ = I;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   204
  in fold_aiterms add end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   205
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   206
fun fold_varnames f =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   207
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   208
    fun add (IVar v) = f v
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   209
      | add ((v, _) `|-> _) = f v
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   210
      | add _ = I;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   211
  in fold_aiterms add end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   212
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   213
fun fold_unbound_varnames f =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   214
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   215
    fun add _ (IConst _) = I
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   216
      | 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
   217
      | add vs (t1 `$ t2) = add vs t1 #> add vs t2
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   218
      | add vs ((v, _) `|-> t) = add (insert (op =) v vs) t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   219
      | add vs (ICase (_, t)) = add vs t;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   220
  in add [] end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   221
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   222
fun collapse_let (((v, ty), se), be as ICase (((IVar w, _), ds), _)) =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   223
      let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   224
        fun exists_v t = fold_unbound_varnames (fn w => fn b =>
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   225
          b orelse v = w) t false;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   226
      in if v = w andalso forall (fn (t1, t2) =>
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   227
        exists_v t1 orelse not (exists_v t2)) ds
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   228
        then ((se, ty), ds)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   229
        else ((se, ty), [(IVar v, be)])
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   230
      end
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   231
  | collapse_let (((v, ty), se), be) =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   232
      ((se, ty), [(IVar v, be)])
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   233
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   234
fun eta_expand (c as (_, (_, tys)), ts) k =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   235
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   236
    val j = length ts;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   237
    val l = k - j;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   238
    val ctxt = (fold o fold_varnames) Name.declare ts Name.context;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   239
    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
   240
  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
   241
24662
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   242
fun contains_dictvar t =
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   243
  let
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   244
    fun contains (DictConst (_, dss)) = (fold o fold) contains dss
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   245
      | contains (DictVar _) = K true;
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   246
  in
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   247
    fold_aiterms
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   248
      (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
   249
  end;
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   250
  
25621
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   251
fun locally_monomorphic (IConst _) = false
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   252
  | locally_monomorphic (IVar _) = true
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   253
  | locally_monomorphic (t `$ _) = locally_monomorphic t
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   254
  | locally_monomorphic (_ `|-> t) = locally_monomorphic t
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   255
  | locally_monomorphic (ICase ((_, ds), _)) = exists (locally_monomorphic o snd) ds;
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   256
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   257
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   258
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   259
(** definitions, transactions **)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   260
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   261
type typscheme = (vname * sort) list * itype;
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   262
datatype stmt =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   263
    Bot
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
   264
  | Fun of typscheme * ((iterm list * iterm) * thm) list
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   265
  | Datatype of (vname * sort) list * (string * itype list) list
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   266
  | Datatypecons of string
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24662
diff changeset
   267
  | Class of vname * ((class * string) list * (string * itype) list)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   268
  | Classrel of class * class
24837
cacc5744be75 clarified terminology
haftmann
parents: 24811
diff changeset
   269
  | Classparam of class
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   270
  | Classinst of (class * (string * (vname * sort) list))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   271
        * ((class * (string * (string * dict list list))) list
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
   272
      * ((string * const) * thm) list);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   273
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   274
type code = stmt Graph.T;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   275
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   276
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   277
(* abstract code *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   278
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   279
val empty_code = Graph.empty : code; (*read: "depends on"*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   280
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   281
fun ensure_bot name = Graph.default_node (name, Bot);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   282
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   283
fun add_def_incr (name, Bot) code =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   284
      (case the_default Bot (try (Graph.get_node code) name)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   285
       of Bot => error "Attempted to add Bot to code"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   286
        | _ => code)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   287
  | add_def_incr (name, def) code =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   288
      (case try (Graph.get_node code) name
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   289
       of NONE => Graph.new_node (name, def) code
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   290
        | SOME Bot => Graph.map_node name (K def) code
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   291
        | SOME _ => error ("Tried to overwrite definition " ^ quote name));
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   292
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24662
diff changeset
   293
fun add_dep (NONE, _) = I
3bf788a0c49a clarified role of class relations
haftmann
parents: 24662
diff changeset
   294
  | add_dep (SOME name1, name2) =
3bf788a0c49a clarified role of class relations
haftmann
parents: 24662
diff changeset
   295
      if name1 = name2 then I else Graph.add_edge (name1, name2);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   296
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   297
val merge_code : code * code -> code = Graph.merge (K true);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   298
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   299
fun project_code delete_empty_funs hidden raw_selected code =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   300
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   301
    fun is_empty_fun name = case Graph.get_node code name
24381
560e8ecdf633 improved evaluation interface
haftmann
parents: 24283
diff changeset
   302
     of Fun (_, []) => true
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   303
      | _ => false;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   304
    val names = subtract (op =) hidden (Graph.keys code);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   305
    val deleted = Graph.all_preds code (filter is_empty_fun names);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   306
    val selected = case raw_selected
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   307
     of NONE => names |> subtract (op =) deleted 
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   308
      | SOME sel => sel
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   309
          |> delete_empty_funs ? subtract (op =) deleted
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   310
          |> subtract (op =) hidden
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   311
          |> Graph.all_succs code
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   312
          |> delete_empty_funs ? subtract (op =) deleted
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   313
          |> subtract (op =) hidden;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   314
  in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   315
    code
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   316
    |> Graph.subgraph (member (op =) selected)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   317
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   318
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   319
fun empty_funs code =
24381
560e8ecdf633 improved evaluation interface
haftmann
parents: 24283
diff changeset
   320
  Graph.fold (fn (name, (Fun (_, []), _)) => cons name
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   321
               | _ => I) code [];
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   322
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   323
fun is_cons code name = case Graph.get_node code name
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   324
 of Datatypecons _ => true
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   325
  | _ => false;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   326
25621
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   327
fun contr_classparam_typs code name = case Graph.get_node code name
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   328
 of Classparam class => let
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   329
        val Class (_, (_, params)) = Graph.get_node code class;
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   330
        val SOME ty = AList.lookup (op =) params name;
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   331
        val (tys, res_ty) = unfold_fun ty;
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   332
        fun no_tyvar (_ `%% tys) = forall no_tyvar tys
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   333
          | no_tyvar (ITyVar _) = false;
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   334
      in if no_tyvar res_ty
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   335
        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
   336
        else []
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   337
      end
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   338
  | _ => [];
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   339
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   340
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   341
(* transaction protocol *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   342
24283
haftmann
parents: 24252
diff changeset
   343
type transact = Graph.key option * code;
haftmann
parents: 24252
diff changeset
   344
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   345
fun ensure_stmt stmtgen name (dep, code) =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   346
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   347
    fun add_def false =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   348
          ensure_bot name
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24662
diff changeset
   349
          #> add_dep (dep, name)
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   350
          #> curry stmtgen (SOME name)
24252
4eb5bc6af008 simplified
haftmann
parents: 24219
diff changeset
   351
          ##> snd
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24662
diff changeset
   352
          #-> (fn def => add_def_incr (name, def))
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   353
      | add_def true =
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24662
diff changeset
   354
          add_dep (dep, name);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   355
  in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   356
    code
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   357
    |> add_def (can (Graph.get_node code) name)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   358
    |> pair dep
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   359
    |> pair name
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   360
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   361
25969
haftmann
parents: 25621
diff changeset
   362
fun transact thy funcgr f code =
26972
haftmann
parents: 26939
diff changeset
   363
  (NONE, code)
haftmann
parents: 26939
diff changeset
   364
  |> f thy (Code.operational_algebra thy) funcgr
haftmann
parents: 26939
diff changeset
   365
  |-> (fn x => fn (_, code) => (x, code));
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   366
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   367
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   368
(* translation kernel *)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   369
26972
haftmann
parents: 26939
diff changeset
   370
fun not_wellsorted thy thm ty sort e =
haftmann
parents: 26939
diff changeset
   371
  let
haftmann
parents: 26939
diff changeset
   372
    val err_class = Sorts.class_error (Syntax.pp_global thy) e;
haftmann
parents: 26939
diff changeset
   373
    val err_thm = case thm
haftmann
parents: 26939
diff changeset
   374
     of SOME thm => "\n(in defining equation " ^ Display.string_of_thm thm ^ ")" | NONE => "";
haftmann
parents: 26939
diff changeset
   375
    val err_typ = "Type " ^ Syntax.string_of_typ_global thy ty ^ " not of sort "
haftmann
parents: 26939
diff changeset
   376
      ^ Syntax.string_of_sort_global thy sort;
haftmann
parents: 26939
diff changeset
   377
  in error ("Wellsortedness error" ^ err_thm ^ ":\n" ^ err_typ ^ "\n" ^ err_class) end;
haftmann
parents: 26939
diff changeset
   378
haftmann
parents: 26939
diff changeset
   379
fun ensure_class thy (algbr as (_, algebra)) funcgr class =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   380
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   381
    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
   382
    val cs = #params (AxClass.get_info thy class);
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   383
    val class' = CodeName.class thy class;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   384
    val stmt_class =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   385
      fold_map (fn superclass => ensure_class thy algbr funcgr superclass
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   386
        ##>> ensure_classrel thy algbr funcgr (class, superclass)) superclasses
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   387
      ##>> fold_map (fn (c, ty) => ensure_const thy algbr funcgr c
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   388
        ##>> exprgen_typ thy algbr funcgr ty) cs
24969
b38527eefb3b removed obsolete AxClass.params_of_class;
wenzelm
parents: 24918
diff changeset
   389
      #>> (fn info => Class (unprefix "'" Name.aT, info))
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   390
  in
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   391
    ensure_stmt stmt_class class'
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   392
  end
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   393
and ensure_classrel thy algbr funcgr (subclass, superclass) =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   394
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   395
    val classrel' = CodeName.classrel thy (subclass, superclass);
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   396
    val stmt_classrel =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   397
      ensure_class thy algbr funcgr subclass
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   398
      ##>> ensure_class thy algbr funcgr superclass
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   399
      #>> Classrel;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   400
  in
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   401
    ensure_stmt stmt_classrel classrel'
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   402
  end
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   403
and ensure_tyco thy algbr funcgr "fun" =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   404
      pair "fun"
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   405
  | ensure_tyco thy algbr funcgr tyco =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   406
      let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   407
        val stmt_datatype =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   408
          let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   409
            val (vs, cos) = Code.get_datatype thy tyco;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   410
          in
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   411
            fold_map (exprgen_tyvar_sort thy algbr funcgr) vs
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   412
            ##>> fold_map (fn (c, tys) =>
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   413
              ensure_const thy algbr funcgr c
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   414
              ##>> fold_map (exprgen_typ thy algbr funcgr) tys) cos
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   415
            #>> Datatype
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   416
          end;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   417
        val tyco' = CodeName.tyco thy tyco;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   418
      in
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   419
        ensure_stmt stmt_datatype tyco'
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   420
      end
26972
haftmann
parents: 26939
diff changeset
   421
and exprgen_tyvar_sort thy (algbr as (proj_sort, _)) funcgr (v, sort) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   422
  fold_map (ensure_class thy algbr funcgr) (proj_sort sort)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   423
  #>> (fn sort => (unprefix "'" v, sort))
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   424
and exprgen_typ thy algbr funcgr (TFree vs) =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   425
      exprgen_tyvar_sort thy algbr funcgr vs
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   426
      #>> (fn (v, sort) => ITyVar v)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   427
  | exprgen_typ thy algbr funcgr (Type (tyco, tys)) =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   428
      ensure_tyco thy algbr funcgr tyco
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   429
      ##>> fold_map (exprgen_typ thy algbr funcgr) tys
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   430
      #>> (fn (tyco, tys) => tyco `%% tys)
26972
haftmann
parents: 26939
diff changeset
   431
and exprgen_dicts thy (algbr as (proj_sort, algebra)) funcgr thm (ty, sort) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   432
  let
26939
1035c89b4c02 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26011
diff changeset
   433
    val pp = Syntax.pp_global thy;
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   434
    datatype typarg =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   435
        Global of (class * string) * typarg list list
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   436
      | Local of (class * class) list * (string * (int * sort));
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   437
    fun class_relation (Global ((_, tyco), yss), _) class =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   438
          Global ((class, tyco), yss)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   439
      | class_relation (Local (classrels, v), subclass) superclass =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   440
          Local ((subclass, superclass) :: classrels, v);
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   441
    fun type_constructor tyco yss class =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   442
      Global ((class, tyco), (map o map) fst yss);
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   443
    fun type_variable (TFree (v, sort)) =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   444
      let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   445
        val sort' = proj_sort sort;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   446
      in map_index (fn (n, class) => (Local ([], (v, (n, sort'))), class)) sort' end;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   447
    val typargs = Sorts.of_sort_derivation pp algebra
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   448
      {class_relation = class_relation, type_constructor = type_constructor,
26972
haftmann
parents: 26939
diff changeset
   449
       type_variable = type_variable} (ty, proj_sort sort)
haftmann
parents: 26939
diff changeset
   450
      handle Sorts.CLASS_ERROR e => not_wellsorted thy thm ty sort e;
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   451
    fun mk_dict (Global (inst, yss)) =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   452
          ensure_inst thy algbr funcgr inst
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   453
          ##>> (fold_map o fold_map) mk_dict yss
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   454
          #>> (fn (inst, dss) => DictConst (inst, dss))
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   455
      | mk_dict (Local (classrels, (v, (k, sort)))) =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   456
          fold_map (ensure_classrel thy algbr funcgr) classrels
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   457
          #>> (fn classrels => DictVar (classrels, (unprefix "'" v, (k, length sort))))
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   458
  in
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   459
    fold_map mk_dict typargs
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   460
  end
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   461
and exprgen_eq thy algbr funcgr thm =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   462
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   463
    val (args, rhs) = (apfst (snd o strip_comb) o Logic.dest_equals
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   464
      o Logic.unvarify o prop_of) thm;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   465
  in
26972
haftmann
parents: 26939
diff changeset
   466
    fold_map (exprgen_term thy algbr funcgr (SOME thm)) args
haftmann
parents: 26939
diff changeset
   467
    ##>> exprgen_term thy algbr funcgr (SOME thm) rhs
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   468
    #>> rpair thm
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   469
  end
26972
haftmann
parents: 26939
diff changeset
   470
and ensure_inst thy (algbr as (_, algebra)) funcgr (class, tyco) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   471
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   472
    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
   473
    val classparams = these (try (#params o AxClass.get_info thy) class);
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   474
    val vs = Name.names Name.context "'a" (Sorts.mg_domain algebra tyco [class]);
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   475
    val sorts' = Sorts.mg_domain (Sign.classes_of thy) tyco [class];
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   476
    val vs' = map2 (fn (v, sort1) => fn sort2 => (v,
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   477
      Sorts.inter_sort (Sign.classes_of thy) (sort1, sort2))) vs sorts';
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   478
    val arity_typ = Type (tyco, map TFree vs);
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   479
    val arity_typ' = Type (tyco, map (fn (v, sort) => TVar ((v, 0), sort)) vs');
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   480
    fun exprgen_superarity superclass =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   481
      ensure_class thy algbr funcgr superclass
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   482
      ##>> ensure_classrel thy algbr funcgr (class, superclass)
26972
haftmann
parents: 26939
diff changeset
   483
      ##>> exprgen_dicts thy algbr funcgr NONE (arity_typ, [superclass])
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   484
      #>> (fn ((superclass, classrel), [DictConst (inst, dss)]) =>
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   485
            (superclass, (classrel, (inst, dss))));
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   486
    fun exprgen_classparam_inst (c, ty) =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   487
      let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   488
        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
   489
        val thm = AxClass.unoverload_conv thy (Thm.cterm_of thy c_inst);
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   490
        val c_ty = (apsnd Logic.unvarifyT o dest_Const o snd
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   491
          o Logic.dest_equals o Thm.prop_of) thm;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   492
      in
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   493
        ensure_const thy algbr funcgr c
26972
haftmann
parents: 26939
diff changeset
   494
        ##>> exprgen_const thy algbr funcgr (SOME thm) c_ty
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   495
        #>> (fn (c, IConst c_inst) => ((c, c_inst), thm))
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   496
      end;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   497
    val stmt_inst =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   498
      ensure_class thy algbr funcgr class
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   499
      ##>> ensure_tyco thy algbr funcgr tyco
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   500
      ##>> fold_map (exprgen_tyvar_sort thy algbr funcgr) vs
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   501
      ##>> fold_map exprgen_superarity superclasses
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   502
      ##>> fold_map exprgen_classparam_inst classparams
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   503
      #>> (fn ((((class, tyco), arity), superarities), classparams) =>
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   504
             Classinst ((class, (tyco, arity)), (superarities, classparams)));
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   505
    val inst = CodeName.instance thy (class, tyco);
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   506
  in
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   507
    ensure_stmt stmt_inst inst
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   508
  end
26972
haftmann
parents: 26939
diff changeset
   509
and ensure_const thy algbr funcgr c =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   510
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   511
    val c' = CodeName.const thy c;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   512
    fun stmt_datatypecons tyco =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   513
      ensure_tyco thy algbr funcgr tyco
25621
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   514
      #>> Datatypecons;
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   515
    fun stmt_classparam class =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   516
      ensure_class thy algbr funcgr class
25621
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   517
      #>> Classparam;
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   518
    fun stmt_fun trns =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   519
      let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   520
        val raw_thms = CodeFuncgr.funcs funcgr c;
26972
haftmann
parents: 26939
diff changeset
   521
        val (vs, raw_ty) = CodeFuncgr.typ funcgr c;
haftmann
parents: 26939
diff changeset
   522
        val ty = Logic.unvarifyT raw_ty;
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   523
        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
   524
          then raw_thms
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   525
          else map (CodeUnit.expand_eta 1) raw_thms;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   526
      in
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   527
        trns
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   528
        |> fold_map (exprgen_tyvar_sort thy algbr funcgr) vs
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   529
        ||>> exprgen_typ thy algbr funcgr ty
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   530
        ||>> fold_map (exprgen_eq thy algbr funcgr) thms
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   531
        |>> (fn ((vs, ty), eqs) => Fun ((vs, ty), eqs))
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   532
      end;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   533
    val stmtgen = case Code.get_datatype_of_constr thy c
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   534
     of SOME tyco => stmt_datatypecons tyco
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   535
      | NONE => (case AxClass.class_of_param thy c
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   536
         of SOME class => stmt_classparam class
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   537
          | NONE => stmt_fun)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   538
  in
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   539
    ensure_stmt stmtgen c'
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   540
  end
26972
haftmann
parents: 26939
diff changeset
   541
and exprgen_term thy algbr funcgr thm (Const (c, ty)) =
haftmann
parents: 26939
diff changeset
   542
      exprgen_app thy algbr funcgr thm ((c, ty), [])
haftmann
parents: 26939
diff changeset
   543
  | exprgen_term thy algbr funcgr thm (Free (v, _)) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   544
      pair (IVar v)
26972
haftmann
parents: 26939
diff changeset
   545
  | exprgen_term thy algbr funcgr thm (Abs (abs as (_, ty, _))) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   546
      let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   547
        val (v, t) = Syntax.variant_abs abs;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   548
      in
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   549
        exprgen_typ thy algbr funcgr ty
26972
haftmann
parents: 26939
diff changeset
   550
        ##>> exprgen_term thy algbr funcgr thm t
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   551
        #>> (fn (ty, t) => (v, ty) `|-> t)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   552
      end
26972
haftmann
parents: 26939
diff changeset
   553
  | exprgen_term thy algbr funcgr thm (t as _ $ _) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   554
      case strip_comb t
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   555
       of (Const (c, ty), ts) =>
26972
haftmann
parents: 26939
diff changeset
   556
            exprgen_app thy algbr funcgr thm ((c, ty), ts)
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   557
        | (t', ts) =>
26972
haftmann
parents: 26939
diff changeset
   558
            exprgen_term thy algbr funcgr thm t'
haftmann
parents: 26939
diff changeset
   559
            ##>> fold_map (exprgen_term thy algbr funcgr thm) ts
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   560
            #>> (fn (t, ts) => t `$$ ts)
26972
haftmann
parents: 26939
diff changeset
   561
and exprgen_const thy algbr funcgr thm (c, ty) =
haftmann
parents: 26939
diff changeset
   562
  let
haftmann
parents: 26939
diff changeset
   563
    val tys = Sign.const_typargs thy (c, ty);
haftmann
parents: 26939
diff changeset
   564
    val sorts = (map snd o fst o CodeFuncgr.typ funcgr) c;
haftmann
parents: 26939
diff changeset
   565
    val tys_args = (fst o Term.strip_type) ty;
haftmann
parents: 26939
diff changeset
   566
  in
haftmann
parents: 26939
diff changeset
   567
    ensure_const thy algbr funcgr c
haftmann
parents: 26939
diff changeset
   568
    ##>> fold_map (exprgen_dicts thy algbr funcgr thm) (tys ~~ sorts)
haftmann
parents: 26939
diff changeset
   569
    ##>> fold_map (exprgen_typ thy algbr funcgr) tys_args
haftmann
parents: 26939
diff changeset
   570
    #>> (fn ((c, iss), tys) => IConst (c, (iss, tys)))
haftmann
parents: 26939
diff changeset
   571
  end
haftmann
parents: 26939
diff changeset
   572
and exprgen_app_default thy algbr funcgr thm (c_ty, ts) =
haftmann
parents: 26939
diff changeset
   573
  exprgen_const thy algbr funcgr thm c_ty
haftmann
parents: 26939
diff changeset
   574
  ##>> fold_map (exprgen_term thy algbr funcgr thm) ts
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   575
  #>> (fn (t, ts) => t `$$ ts)
26972
haftmann
parents: 26939
diff changeset
   576
and exprgen_case thy algbr funcgr thm n cases (app as ((c, ty), ts)) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   577
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   578
    val (tys, _) =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   579
      (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
   580
    val dt = nth ts n;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   581
    val dty = nth tys n;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   582
    fun is_undefined (Const (c, _)) = Code.is_undefined thy c
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   583
      | is_undefined _ = false;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   584
    fun mk_case (co, n) t =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   585
      let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   586
        val (vs, body) = Term.strip_abs_eta n t;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   587
        val selector = list_comb (Const (co, map snd vs ---> dty), map Free vs);
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   588
      in if is_undefined body then NONE else SOME (selector, body) end;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   589
    fun mk_ds [] =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   590
          let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   591
            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
   592
          in [(Free v_ty, body)] end
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   593
      | mk_ds cases = map_filter (uncurry mk_case)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   594
          (AList.make (CodeUnit.no_args thy) cases ~~ nth_drop n ts);
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   595
  in
26972
haftmann
parents: 26939
diff changeset
   596
    exprgen_term thy algbr funcgr thm dt
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   597
    ##>> exprgen_typ thy algbr funcgr dty
26972
haftmann
parents: 26939
diff changeset
   598
    ##>> fold_map (fn (pat, body) => exprgen_term thy algbr funcgr thm pat
haftmann
parents: 26939
diff changeset
   599
          ##>> exprgen_term thy algbr funcgr thm body) (mk_ds cases)
haftmann
parents: 26939
diff changeset
   600
    ##>> exprgen_app_default thy algbr funcgr thm app
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   601
    #>> (fn (((dt, dty), ds), t0) => ICase (((dt, dty), ds), t0))
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   602
  end
26972
haftmann
parents: 26939
diff changeset
   603
and exprgen_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
   604
 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
   605
      if length ts < i then
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   606
        let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   607
          val k = length ts;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   608
          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
   609
          val ctxt = (fold o fold_aterms)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   610
            (fn Free (v, _) => Name.declare v | _ => I) ts Name.context;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   611
          val vs = Name.names ctxt "a" tys;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   612
        in
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   613
          fold_map (exprgen_typ thy algbr funcgr) tys
26972
haftmann
parents: 26939
diff changeset
   614
          ##>> exprgen_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
   615
          #>> (fn (tys, t) => map2 (fn (v, _) => pair v) vs tys `|--> t)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   616
        end
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   617
      else if length ts > i then
26972
haftmann
parents: 26939
diff changeset
   618
        exprgen_case thy algbr funcgr thm n cases ((c, ty), Library.take (i, ts))
haftmann
parents: 26939
diff changeset
   619
        ##>> fold_map (exprgen_term thy algbr funcgr thm) (Library.drop (i, ts))
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   620
        #>> (fn (t, ts) => t `$$ ts)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   621
      else
26972
haftmann
parents: 26939
diff changeset
   622
        exprgen_case thy algbr funcgr thm n cases ((c, ty), ts)
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   623
      end
26972
haftmann
parents: 26939
diff changeset
   624
  | NONE => exprgen_app_default thy algbr funcgr thm ((c, ty), ts);
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   625
25969
haftmann
parents: 25621
diff changeset
   626
haftmann
parents: 25621
diff changeset
   627
(** evaluation **)
haftmann
parents: 25621
diff changeset
   628
haftmann
parents: 25621
diff changeset
   629
fun add_value_stmt (t, ty) code =
haftmann
parents: 25621
diff changeset
   630
  code
haftmann
parents: 25621
diff changeset
   631
  |> Graph.new_node (CodeName.value_name, Fun (([], ty), [(([], t), Drule.dummy_thm)]))
haftmann
parents: 25621
diff changeset
   632
  |> fold (curry Graph.add_edge CodeName.value_name) (Graph.keys code);
haftmann
parents: 25621
diff changeset
   633
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   634
fun ensure_value thy algbr funcgr t = 
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   635
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   636
    val ty = fastype_of t;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   637
    val vs = fold_term_types (K (fold_atyps (insert (eq_fst op =)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   638
      o dest_TFree))) t [];
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   639
    val stmt_value =
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   640
      fold_map (exprgen_tyvar_sort thy algbr funcgr) vs
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   641
      ##>> exprgen_typ thy algbr funcgr ty
26972
haftmann
parents: 26939
diff changeset
   642
      ##>> exprgen_term thy algbr funcgr NONE t
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   643
      #>> (fn ((vs, ty), t) => Fun ((vs, ty), [(([], t), Drule.dummy_thm)]));
26011
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   644
    fun term_value (dep, code1) =
25969
haftmann
parents: 25621
diff changeset
   645
      let
haftmann
parents: 25621
diff changeset
   646
        val Fun ((vs, ty), [(([], t), _)]) =
26011
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   647
          Graph.get_node code1 CodeName.value_name;
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   648
        val deps = Graph.imm_succs code1 CodeName.value_name;
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   649
        val code2 = Graph.del_nodes [CodeName.value_name] code1;
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   650
        val code3 = project_code false [] (SOME deps) code2;
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   651
      in ((code3, (((vs, ty), t), deps)), (dep, code2)) end;
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   652
  in
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   653
    ensure_stmt stmt_value CodeName.value_name
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   654
    #> snd
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   655
    #> term_value
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   656
  end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   657
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   658
end; (*struct*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   659
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   660
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   661
structure BasicCodeThingol: BASIC_CODE_THINGOL = CodeThingol;