src/Tools/Code/code_thingol.ML
author haftmann
Fri, 02 Jul 2010 16:15:49 +0200
changeset 37688 db7b5f2e19cd
parent 37640 fc27be4c6b1c
child 37689 e38abf437c20
permissions -rw-r--r--
traceback for error messages
haftmann@24219
     1
(*  Title:      Tools/code/code_thingol.ML
haftmann@24219
     2
    Author:     Florian Haftmann, TU Muenchen
haftmann@24219
     3
haftmann@24219
     4
Intermediate language ("Thin-gol") representing executable code.
haftmann@24918
     5
Representation and translation.
haftmann@24219
     6
*)
haftmann@24219
     7
haftmann@24219
     8
infix 8 `%%;
haftmann@24219
     9
infix 4 `$;
haftmann@24219
    10
infix 4 `$$;
haftmann@31724
    11
infixr 3 `|=>;
haftmann@31724
    12
infixr 3 `|==>;
haftmann@24219
    13
haftmann@24219
    14
signature BASIC_CODE_THINGOL =
haftmann@24219
    15
sig
haftmann@24219
    16
  type vname = string;
haftmann@24219
    17
  datatype dict =
haftmann@24219
    18
      DictConst of string * dict list list
haftmann@24219
    19
    | DictVar of string list * (vname * (int * int));
haftmann@24219
    20
  datatype itype =
haftmann@24219
    21
      `%% of string * itype list
haftmann@24219
    22
    | ITyVar of vname;
haftmann@31049
    23
  type const = string * ((itype list * dict list list) * itype list (*types of arguments*))
haftmann@24219
    24
  datatype iterm =
haftmann@24591
    25
      IConst of const
haftmann@31889
    26
    | IVar of vname option
haftmann@24219
    27
    | `$ of iterm * iterm
haftmann@31888
    28
    | `|=> of (vname option * itype) * iterm
haftmann@24219
    29
    | ICase of ((iterm * itype) * (iterm * iterm) list) * iterm;
haftmann@24219
    30
        (*((term, type), [(selector pattern, body term )]), primitive term)*)
haftmann@24219
    31
  val `$$ : iterm * iterm list -> iterm;
haftmann@31888
    32
  val `|==> : (vname option * itype) list * iterm -> iterm;
haftmann@24219
    33
  type typscheme = (vname * sort) list * itype;
haftmann@24219
    34
end;
haftmann@24219
    35
haftmann@24219
    36
signature CODE_THINGOL =
haftmann@24219
    37
sig
haftmann@28663
    38
  include BASIC_CODE_THINGOL
haftmann@34084
    39
  val fun_tyco: string
haftmann@28663
    40
  val unfoldl: ('a -> ('a * 'b) option) -> 'a -> 'a * 'b list
haftmann@28663
    41
  val unfoldr: ('a -> ('b * 'a) option) -> 'a -> 'b list * 'a
haftmann@28663
    42
  val unfold_fun: itype -> itype list * itype
haftmann@37640
    43
  val unfold_fun_n: int -> itype -> itype list * itype
haftmann@28663
    44
  val unfold_app: iterm -> iterm * iterm list
haftmann@31888
    45
  val unfold_abs: iterm -> (vname option * itype) list * iterm
haftmann@28663
    46
  val split_let: iterm -> (((iterm * itype) * iterm) * iterm) option
haftmann@28663
    47
  val unfold_let: iterm -> ((iterm * itype) * iterm) list * iterm
haftmann@31889
    48
  val split_pat_abs: iterm -> ((iterm * itype) * iterm) option
haftmann@31889
    49
  val unfold_pat_abs: iterm -> (iterm * itype) list * iterm
haftmann@31049
    50
  val unfold_const_app: iterm -> (const * iterm list) option
haftmann@32909
    51
  val is_IVar: iterm -> bool
haftmann@31049
    52
  val eta_expand: int -> const * iterm list -> iterm
haftmann@28663
    53
  val contains_dictvar: iterm -> bool
haftmann@28663
    54
  val locally_monomorphic: iterm -> bool
haftmann@31934
    55
  val add_constnames: iterm -> string list -> string list
haftmann@32917
    56
  val add_tyconames: iterm -> string list -> string list
haftmann@28663
    57
  val fold_varnames: (string -> 'a -> 'a) -> iterm -> 'a -> 'a
haftmann@28663
    58
haftmann@28663
    59
  type naming
haftmann@28706
    60
  val empty_naming: naming
haftmann@28663
    61
  val lookup_class: naming -> class -> string option
haftmann@28663
    62
  val lookup_classrel: naming -> class * class -> string option
haftmann@28663
    63
  val lookup_tyco: naming -> string -> string option
haftmann@28663
    64
  val lookup_instance: naming -> class * string -> string option
haftmann@28663
    65
  val lookup_const: naming -> string -> string option
haftmann@31054
    66
  val ensure_declared_const: theory -> string -> naming -> string * naming
haftmann@24219
    67
haftmann@24918
    68
  datatype stmt =
haftmann@27024
    69
      NoStmt
haftmann@37412
    70
    | Fun of string * ((typscheme * ((iterm list * iterm) * (thm option * bool)) list) * thm option)
haftmann@37423
    71
    | Datatype of string * ((vname * sort) list *
haftmann@37423
    72
        ((string * vname list (*type argument wrt. canonical order*)) * itype list) list)
haftmann@28663
    73
    | Datatypecons of string * string
haftmann@37422
    74
    | Class of class * (vname * ((class * string) list * (string * itype) list))
haftmann@24219
    75
    | Classrel of class * class
haftmann@28663
    76
    | Classparam of string * class
haftmann@37423
    77
    | Classinst of (class * (string * (vname * sort) list) (*class and arity*))
haftmann@37420
    78
          * ((class * (string * (string * dict list list))) list (*super instances*)
haftmann@37423
    79
        * (((string * const) * (thm * bool)) list (*class parameter instances*)
haftmann@37423
    80
          * ((string * const) * (thm * bool)) list (*super class parameter instances*)))
haftmann@28663
    81
  type program = stmt Graph.T
haftmann@28663
    82
  val empty_funs: program -> string list
haftmann@28663
    83
  val map_terms_bottom_up: (iterm -> iterm) -> iterm -> iterm
haftmann@28663
    84
  val map_terms_stmt: (iterm -> iterm) -> stmt -> stmt
haftmann@28663
    85
  val is_cons: program -> string -> bool
haftmann@37415
    86
  val is_case: stmt -> bool
haftmann@28663
    87
  val contr_classparam_typs: program -> string -> itype option list
haftmann@32895
    88
  val labelled_name: theory -> program -> string -> string
haftmann@37688
    89
  val labelled_traceback: theory -> program -> string -> string
haftmann@32895
    90
  val group_stmts: theory -> program
haftmann@32895
    91
    -> ((string * stmt) list * (string * stmt) list
haftmann@32895
    92
      * ((string * stmt) list * (string * stmt) list)) list
haftmann@24219
    93
haftmann@31036
    94
  val read_const_exprs: theory -> string list -> string list * string list
haftmann@36272
    95
  val consts_program: theory -> bool -> string list -> string list * (naming * program)
haftmann@32101
    96
  val eval_conv: theory
haftmann@31063
    97
    -> (naming -> program -> ((string * sort) list * typscheme) * iterm -> string list -> cterm -> thm)
haftmann@28663
    98
    -> cterm -> thm
haftmann@32101
    99
  val eval: theory -> ((term -> term) -> 'a -> 'a)
haftmann@31063
   100
    -> (naming -> program -> ((string * sort) list * typscheme) * iterm -> string list -> 'a)
haftmann@28663
   101
    -> term -> 'a
haftmann@24219
   102
end;
haftmann@24219
   103
haftmann@28054
   104
structure Code_Thingol: CODE_THINGOL =
haftmann@24219
   105
struct
haftmann@24219
   106
haftmann@24219
   107
(** auxiliary **)
haftmann@24219
   108
haftmann@24219
   109
fun unfoldl dest x =
haftmann@24219
   110
  case dest x
haftmann@24219
   111
   of NONE => (x, [])
haftmann@24219
   112
    | SOME (x1, x2) =>
haftmann@24219
   113
        let val (x', xs') = unfoldl dest x1 in (x', xs' @ [x2]) end;
haftmann@24219
   114
haftmann@24219
   115
fun unfoldr dest x =
haftmann@24219
   116
  case dest x
haftmann@24219
   117
   of NONE => ([], x)
haftmann@24219
   118
    | SOME (x1, x2) =>
haftmann@24219
   119
        let val (xs', x') = unfoldr dest x2 in (x1::xs', x') end;
haftmann@24219
   120
haftmann@24219
   121
haftmann@29899
   122
(** language core - types, terms **)
haftmann@24219
   123
haftmann@24219
   124
type vname = string;
haftmann@24219
   125
haftmann@24219
   126
datatype dict =
haftmann@24219
   127
    DictConst of string * dict list list
haftmann@24219
   128
  | DictVar of string list * (vname * (int * int));
haftmann@24219
   129
haftmann@24219
   130
datatype itype =
haftmann@24219
   131
    `%% of string * itype list
haftmann@24219
   132
  | ITyVar of vname;
haftmann@24219
   133
haftmann@31049
   134
type const = string * ((itype list * dict list list) * itype list (*types of arguments*))
haftmann@24591
   135
haftmann@24219
   136
datatype iterm =
haftmann@24591
   137
    IConst of const
haftmann@31889
   138
  | IVar of vname option
haftmann@24219
   139
  | `$ of iterm * iterm
haftmann@31888
   140
  | `|=> of (vname option * itype) * iterm
haftmann@24219
   141
  | ICase of ((iterm * itype) * (iterm * iterm) list) * iterm;
haftmann@24219
   142
    (*see also signature*)
haftmann@24219
   143
haftmann@32909
   144
fun is_IVar (IVar _) = true
haftmann@32909
   145
  | is_IVar _ = false;
haftmann@32909
   146
haftmann@24219
   147
val op `$$ = Library.foldl (op `$);
haftmann@31724
   148
val op `|==> = Library.foldr (op `|=>);
haftmann@24219
   149
haftmann@24219
   150
val unfold_app = unfoldl
haftmann@24219
   151
  (fn op `$ t => SOME t
haftmann@24219
   152
    | _ => NONE);
haftmann@24219
   153
haftmann@31873
   154
val unfold_abs = unfoldr
haftmann@31873
   155
  (fn op `|=> t => SOME t
haftmann@24219
   156
    | _ => NONE);
haftmann@24219
   157
haftmann@24219
   158
val split_let = 
haftmann@24219
   159
  (fn ICase (((td, ty), [(p, t)]), _) => SOME (((p, ty), td), t)
haftmann@24219
   160
    | _ => NONE);
haftmann@24219
   161
haftmann@24219
   162
val unfold_let = unfoldr split_let;
haftmann@24219
   163
haftmann@24219
   164
fun unfold_const_app t =
haftmann@24219
   165
 case unfold_app t
haftmann@24219
   166
  of (IConst c, ts) => SOME (c, ts)
haftmann@24219
   167
   | _ => NONE;
haftmann@24219
   168
haftmann@32917
   169
fun fold_constexprs f =
haftmann@32917
   170
  let
haftmann@32917
   171
    fun fold' (IConst c) = f c
haftmann@32917
   172
      | fold' (IVar _) = I
haftmann@32917
   173
      | fold' (t1 `$ t2) = fold' t1 #> fold' t2
haftmann@32917
   174
      | fold' (_ `|=> t) = fold' t
haftmann@32917
   175
      | fold' (ICase (((t, _), ds), _)) = fold' t
haftmann@32917
   176
          #> fold (fn (pat, body) => fold' pat #> fold' body) ds
haftmann@32917
   177
  in fold' end;
haftmann@32917
   178
haftmann@32917
   179
val add_constnames = fold_constexprs (fn (c, _) => insert (op =) c);
haftmann@32917
   180
haftmann@32917
   181
fun add_tycos (tyco `%% tys) = insert (op =) tyco #> fold add_tycos tys
haftmann@32917
   182
  | add_tycos (ITyVar _) = I;
haftmann@32917
   183
haftmann@32917
   184
val add_tyconames = fold_constexprs (fn (_, ((tys, _), _)) => fold add_tycos tys);
haftmann@24219
   185
haftmann@24219
   186
fun fold_varnames f =
haftmann@24219
   187
  let
haftmann@31934
   188
    fun fold_aux add f =
haftmann@31934
   189
      let
haftmann@31934
   190
        fun fold_term _ (IConst _) = I
haftmann@31934
   191
          | fold_term vs (IVar (SOME v)) = if member (op =) vs v then I else f v
haftmann@31934
   192
          | fold_term _ (IVar NONE) = I
haftmann@31934
   193
          | fold_term vs (t1 `$ t2) = fold_term vs t1 #> fold_term vs t2
haftmann@31934
   194
          | fold_term vs ((SOME v, _) `|=> t) = fold_term (insert (op =) v vs) t
haftmann@31934
   195
          | fold_term vs ((NONE, _) `|=> t) = fold_term vs t
haftmann@31934
   196
          | fold_term vs (ICase (((t, _), ds), _)) = fold_term vs t #> fold (fold_case vs) ds
haftmann@31934
   197
        and fold_case vs (p, t) = fold_term (add p vs) t;
haftmann@31934
   198
      in fold_term [] end;
haftmann@31934
   199
    fun add t = fold_aux add (insert (op =)) t;
haftmann@31934
   200
  in fold_aux add f end;
haftmann@24219
   201
haftmann@31934
   202
fun exists_var t v = fold_varnames (fn w => fn b => v = w orelse b) t false;
haftmann@31873
   203
haftmann@31889
   204
fun split_pat_abs ((NONE, ty) `|=> t) = SOME ((IVar NONE, ty), t)
haftmann@31888
   205
  | split_pat_abs ((SOME v, ty) `|=> t) = SOME (case t
haftmann@31889
   206
     of ICase (((IVar (SOME w), _), [(p, t')]), _) =>
haftmann@31888
   207
          if v = w andalso (exists_var p v orelse not (exists_var t' v))
haftmann@31889
   208
          then ((p, ty), t')
haftmann@31889
   209
          else ((IVar (SOME v), ty), t)
haftmann@31889
   210
      | _ => ((IVar (SOME v), ty), t))
haftmann@31888
   211
  | split_pat_abs _ = NONE;
haftmann@31873
   212
haftmann@31873
   213
val unfold_pat_abs = unfoldr split_pat_abs;
haftmann@24219
   214
haftmann@31890
   215
fun unfold_abs_eta [] t = ([], t)
haftmann@31890
   216
  | unfold_abs_eta (_ :: tys) (v_ty `|=> t) =
haftmann@31890
   217
      let
haftmann@31890
   218
        val (vs_tys, t') = unfold_abs_eta tys t;
haftmann@31890
   219
      in (v_ty :: vs_tys, t') end
haftmann@31892
   220
  | unfold_abs_eta tys t =
haftmann@31890
   221
      let
haftmann@31890
   222
        val ctxt = fold_varnames Name.declare t Name.context;
haftmann@31890
   223
        val vs_tys = (map o apfst) SOME (Name.names ctxt "a" tys);
haftmann@31890
   224
      in (vs_tys, t `$$ map (IVar o fst) vs_tys) end;
haftmann@31890
   225
haftmann@27711
   226
fun eta_expand k (c as (_, (_, tys)), ts) =
haftmann@24219
   227
  let
haftmann@24219
   228
    val j = length ts;
haftmann@24219
   229
    val l = k - j;
haftmann@24219
   230
    val ctxt = (fold o fold_varnames) Name.declare ts Name.context;
haftmann@31889
   231
    val vs_tys = (map o apfst) SOME
haftmann@33956
   232
      (Name.names ctxt "a" ((take l o drop j) tys));
haftmann@31889
   233
  in vs_tys `|==> IConst c `$$ ts @ map (IVar o fst) vs_tys end;
haftmann@24219
   234
haftmann@24662
   235
fun contains_dictvar t =
haftmann@24662
   236
  let
haftmann@31934
   237
    fun cont_dict (DictConst (_, dss)) = (exists o exists) cont_dict dss
haftmann@31934
   238
      | cont_dict (DictVar _) = true;
haftmann@31934
   239
    fun cont_term (IConst (_, ((_, dss), _))) = (exists o exists) cont_dict dss
haftmann@31934
   240
      | cont_term (IVar _) = false
haftmann@31934
   241
      | cont_term (t1 `$ t2) = cont_term t1 orelse cont_term t2
haftmann@31934
   242
      | cont_term (_ `|=> t) = cont_term t
haftmann@31934
   243
      | cont_term (ICase (_, t)) = cont_term t;
haftmann@31934
   244
  in cont_term t end;
haftmann@24662
   245
  
haftmann@25621
   246
fun locally_monomorphic (IConst _) = false
haftmann@25621
   247
  | locally_monomorphic (IVar _) = true
haftmann@25621
   248
  | locally_monomorphic (t `$ _) = locally_monomorphic t
haftmann@31724
   249
  | locally_monomorphic (_ `|=> t) = locally_monomorphic t
haftmann@25621
   250
  | locally_monomorphic (ICase ((_, ds), _)) = exists (locally_monomorphic o snd) ds;
haftmann@25621
   251
haftmann@25621
   252
haftmann@28688
   253
(** namings **)
haftmann@28663
   254
haftmann@28663
   255
(* policies *)
haftmann@28663
   256
haftmann@28663
   257
local
wenzelm@33172
   258
  fun thyname_of_class thy = #theory_name o Name_Space.the_entry (Sign.class_space thy);
wenzelm@33172
   259
  fun thyname_of_instance thy inst = case AxClass.thynames_of_arity thy inst
wenzelm@33172
   260
   of [] => error ("No such instance: " ^ quote (snd inst ^ " :: " ^ fst inst))
haftmann@28663
   261
    | thyname :: _ => thyname;
haftmann@28706
   262
  fun thyname_of_const thy c = case AxClass.class_of_param thy c
haftmann@28706
   263
   of SOME class => thyname_of_class thy class
haftmann@35299
   264
    | NONE => (case Code.get_type_of_constr_or_abstr thy c
haftmann@35226
   265
       of SOME (tyco, _) => Codegen.thyname_of_type thy tyco
wenzelm@33172
   266
        | NONE => Codegen.thyname_of_const thy c);
haftmann@33409
   267
  fun purify_base "==>" = "follows"
haftmann@33409
   268
    | purify_base "op &" = "and"
haftmann@31036
   269
    | purify_base "op |" = "or"
haftmann@31036
   270
    | purify_base "op -->" = "implies"
haftmann@31036
   271
    | purify_base "op :" = "member"
haftmann@31036
   272
    | purify_base "op =" = "eq"
haftmann@31036
   273
    | purify_base "*" = "product"
haftmann@31036
   274
    | purify_base "+" = "sum"
haftmann@31036
   275
    | purify_base s = Name.desymbolize false s;
haftmann@28663
   276
  fun namify thy get_basename get_thyname name =
haftmann@28663
   277
    let
haftmann@28663
   278
      val prefix = get_thyname thy name;
haftmann@31036
   279
      val base = (purify_base o get_basename) name;
wenzelm@30364
   280
    in Long_Name.append prefix base end;
haftmann@28663
   281
in
haftmann@28663
   282
wenzelm@30364
   283
fun namify_class thy = namify thy Long_Name.base_name thyname_of_class;
haftmann@37359
   284
fun namify_classrel thy = namify thy (fn (sub_class, super_class) => 
haftmann@37406
   285
    Long_Name.base_name super_class ^ "_" ^ Long_Name.base_name sub_class)
wenzelm@33172
   286
  (fn thy => thyname_of_class thy o fst);
haftmann@28663
   287
  (*order fits nicely with composed projections*)
haftmann@28688
   288
fun namify_tyco thy "fun" = "Pure.fun"
wenzelm@33172
   289
  | namify_tyco thy tyco = namify thy Long_Name.base_name Codegen.thyname_of_type tyco;
haftmann@28663
   290
fun namify_instance thy = namify thy (fn (class, tyco) => 
wenzelm@30364
   291
  Long_Name.base_name class ^ "_" ^ Long_Name.base_name tyco) thyname_of_instance;
wenzelm@30364
   292
fun namify_const thy = namify thy Long_Name.base_name thyname_of_const;
haftmann@28663
   293
haftmann@28663
   294
end; (* local *)
haftmann@28663
   295
haftmann@28663
   296
haftmann@28688
   297
(* data *)
haftmann@28663
   298
haftmann@28663
   299
datatype naming = Naming of {
haftmann@28663
   300
  class: class Symtab.table * Name.context,
haftmann@30636
   301
  classrel: string Symreltab.table * Name.context,
haftmann@28663
   302
  tyco: string Symtab.table * Name.context,
haftmann@30636
   303
  instance: string Symreltab.table * Name.context,
haftmann@28663
   304
  const: string Symtab.table * Name.context
haftmann@28663
   305
}
haftmann@28663
   306
haftmann@28663
   307
fun dest_Naming (Naming naming) = naming;
haftmann@28663
   308
haftmann@28663
   309
val empty_naming = Naming {
haftmann@28663
   310
  class = (Symtab.empty, Name.context),
haftmann@30636
   311
  classrel = (Symreltab.empty, Name.context),
haftmann@28663
   312
  tyco = (Symtab.empty, Name.context),
haftmann@30636
   313
  instance = (Symreltab.empty, Name.context),
haftmann@28663
   314
  const = (Symtab.empty, Name.context)
haftmann@28663
   315
};
haftmann@28663
   316
haftmann@28663
   317
local
haftmann@28663
   318
  fun mk_naming (class, classrel, tyco, instance, const) =
haftmann@28663
   319
    Naming { class = class, classrel = classrel,
haftmann@28663
   320
      tyco = tyco, instance = instance, const = const };
haftmann@28663
   321
  fun map_naming f (Naming { class, classrel, tyco, instance, const }) =
haftmann@28663
   322
    mk_naming (f (class, classrel, tyco, instance, const));
haftmann@28663
   323
in
haftmann@28663
   324
  fun map_class f = map_naming
haftmann@28663
   325
    (fn (class, classrel, tyco, inst, const) =>
haftmann@28663
   326
      (f class, classrel, tyco, inst, const));
haftmann@28663
   327
  fun map_classrel f = map_naming
haftmann@28663
   328
    (fn (class, classrel, tyco, inst, const) =>
haftmann@28663
   329
      (class, f classrel, tyco, inst, const));
haftmann@28663
   330
  fun map_tyco f = map_naming
haftmann@28663
   331
    (fn (class, classrel, tyco, inst, const) =>
haftmann@28663
   332
      (class, classrel, f tyco, inst, const));
haftmann@28663
   333
  fun map_instance f = map_naming
haftmann@28663
   334
    (fn (class, classrel, tyco, inst, const) =>
haftmann@28663
   335
      (class, classrel, tyco, f inst, const));
haftmann@28663
   336
  fun map_const f = map_naming
haftmann@28663
   337
    (fn (class, classrel, tyco, inst, const) =>
haftmann@28663
   338
      (class, classrel, tyco, inst, f const));
haftmann@28663
   339
end; (*local*)
haftmann@28663
   340
haftmann@28663
   341
fun add_variant update (thing, name) (tab, used) =
haftmann@28663
   342
  let
haftmann@28663
   343
    val (name', used') = yield_singleton Name.variants name used;
haftmann@28663
   344
    val tab' = update (thing, name') tab;
haftmann@28663
   345
  in (tab', used') end;
haftmann@28663
   346
haftmann@28663
   347
fun declare thy mapp lookup update namify thing =
haftmann@28663
   348
  mapp (add_variant update (thing, namify thy thing))
haftmann@28663
   349
  #> `(fn naming => the (lookup naming thing));
haftmann@28663
   350
haftmann@28688
   351
haftmann@28688
   352
(* lookup and declare *)
haftmann@28688
   353
haftmann@28688
   354
local
haftmann@28688
   355
haftmann@28688
   356
val suffix_class = "class";
haftmann@28688
   357
val suffix_classrel = "classrel"
haftmann@28688
   358
val suffix_tyco = "tyco";
haftmann@28688
   359
val suffix_instance = "inst";
haftmann@28688
   360
val suffix_const = "const";
haftmann@28688
   361
haftmann@28688
   362
fun add_suffix nsp NONE = NONE
wenzelm@30364
   363
  | add_suffix nsp (SOME name) = SOME (Long_Name.append name nsp);
haftmann@28688
   364
haftmann@28688
   365
in
haftmann@28688
   366
haftmann@28663
   367
val lookup_class = add_suffix suffix_class
haftmann@28663
   368
  oo Symtab.lookup o fst o #class o dest_Naming;
haftmann@28663
   369
val lookup_classrel = add_suffix suffix_classrel
haftmann@30636
   370
  oo Symreltab.lookup o fst o #classrel o dest_Naming;
haftmann@28663
   371
val lookup_tyco = add_suffix suffix_tyco
haftmann@28663
   372
  oo Symtab.lookup o fst o #tyco o dest_Naming;
haftmann@28663
   373
val lookup_instance = add_suffix suffix_instance
haftmann@30636
   374
  oo Symreltab.lookup o fst o #instance o dest_Naming;
haftmann@28663
   375
val lookup_const = add_suffix suffix_const
haftmann@28663
   376
  oo Symtab.lookup o fst o #const o dest_Naming;
haftmann@28663
   377
haftmann@28663
   378
fun declare_class thy = declare thy map_class
haftmann@28663
   379
  lookup_class Symtab.update_new namify_class;
haftmann@28663
   380
fun declare_classrel thy = declare thy map_classrel
haftmann@30636
   381
  lookup_classrel Symreltab.update_new namify_classrel;
haftmann@28663
   382
fun declare_tyco thy = declare thy map_tyco
haftmann@28663
   383
  lookup_tyco Symtab.update_new namify_tyco;
haftmann@28663
   384
fun declare_instance thy = declare thy map_instance
haftmann@30636
   385
  lookup_instance Symreltab.update_new namify_instance;
haftmann@28663
   386
fun declare_const thy = declare thy map_const
haftmann@28663
   387
  lookup_const Symtab.update_new namify_const;
haftmann@28663
   388
haftmann@31054
   389
fun ensure_declared_const thy const naming =
haftmann@31054
   390
  case lookup_const naming const
haftmann@31054
   391
   of SOME const' => (const', naming)
haftmann@31054
   392
    | NONE => declare_const thy const naming;
haftmann@31054
   393
haftmann@37359
   394
val fun_tyco = Long_Name.append (namify_tyco Pure.thy "fun") suffix_tyco
haftmann@37359
   395
  (*depends on add_suffix*);
haftmann@34084
   396
haftmann@28688
   397
val unfold_fun = unfoldr
haftmann@34084
   398
  (fn tyco `%% [ty1, ty2] => if tyco = fun_tyco then SOME (ty1, ty2) else NONE
haftmann@37359
   399
    | _ => NONE);
haftmann@28688
   400
haftmann@37640
   401
fun unfold_fun_n n ty =
haftmann@37640
   402
  let
haftmann@37640
   403
    val (tys1, ty1) = unfold_fun ty;
haftmann@37640
   404
    val (tys3, tys2) = chop n tys1;
haftmann@37640
   405
    val ty3 = Library.foldr (fn (ty1, ty2) => fun_tyco `%% [ty1, ty2]) (tys2, ty1);
haftmann@37640
   406
  in (tys3, ty3) end;
haftmann@37640
   407
haftmann@28688
   408
end; (* local *)
haftmann@28688
   409
haftmann@24219
   410
haftmann@27103
   411
(** statements, abstract programs **)
haftmann@24219
   412
haftmann@24219
   413
type typscheme = (vname * sort) list * itype;
haftmann@37422
   414
datatype stmt =
haftmann@27024
   415
    NoStmt
haftmann@37412
   416
  | Fun of string * ((typscheme * ((iterm list * iterm) * (thm option * bool)) list) * thm option)
haftmann@37423
   417
  | Datatype of string * ((vname * sort) list * ((string * vname list) * itype list) list)
haftmann@28663
   418
  | Datatypecons of string * string
haftmann@37422
   419
  | Class of class * (vname * ((class * string) list * (string * itype) list))
haftmann@24219
   420
  | Classrel of class * class
haftmann@28663
   421
  | Classparam of string * class
haftmann@24219
   422
  | Classinst of (class * (string * (vname * sort) list))
haftmann@37420
   423
        * ((class * (string * (string * dict list list))) list
haftmann@37423
   424
      * (((string * const) * (thm * bool)) list
haftmann@37423
   425
        * ((string * const) * (thm * bool)) list))
haftmann@37423
   426
      (*see also signature*);
haftmann@24219
   427
haftmann@27103
   428
type program = stmt Graph.T;
haftmann@24219
   429
haftmann@27103
   430
fun empty_funs program =
haftmann@37412
   431
  Graph.fold (fn (name, (Fun (c, ((_, []), _)), _)) => cons c
haftmann@27103
   432
               | _ => I) program [];
haftmann@24219
   433
haftmann@27711
   434
fun map_terms_bottom_up f (t as IConst _) = f t
haftmann@27711
   435
  | map_terms_bottom_up f (t as IVar _) = f t
haftmann@27711
   436
  | map_terms_bottom_up f (t1 `$ t2) = f
haftmann@27711
   437
      (map_terms_bottom_up f t1 `$ map_terms_bottom_up f t2)
haftmann@31724
   438
  | map_terms_bottom_up f ((v, ty) `|=> t) = f
haftmann@31724
   439
      ((v, ty) `|=> map_terms_bottom_up f t)
haftmann@27711
   440
  | map_terms_bottom_up f (ICase (((t, ty), ps), t0)) = f
haftmann@27711
   441
      (ICase (((map_terms_bottom_up f t, ty), (map o pairself)
haftmann@27711
   442
        (map_terms_bottom_up f) ps), map_terms_bottom_up f t0));
haftmann@27711
   443
haftmann@37423
   444
fun map_classparam_instances_as_term f =
haftmann@37423
   445
  (map o apfst o apsnd) (fn const => case f (IConst const) of IConst const' => const')
haftmann@37423
   446
haftmann@27711
   447
fun map_terms_stmt f NoStmt = NoStmt
haftmann@37412
   448
  | map_terms_stmt f (Fun (c, ((tysm, eqs), case_cong))) = Fun (c, ((tysm, (map o apfst)
haftmann@37412
   449
      (fn (ts, t) => (map f ts, f t)) eqs), case_cong))
haftmann@27711
   450
  | map_terms_stmt f (stmt as Datatype _) = stmt
haftmann@27711
   451
  | map_terms_stmt f (stmt as Datatypecons _) = stmt
haftmann@27711
   452
  | map_terms_stmt f (stmt as Class _) = stmt
haftmann@27711
   453
  | map_terms_stmt f (stmt as Classrel _) = stmt
haftmann@27711
   454
  | map_terms_stmt f (stmt as Classparam _) = stmt
haftmann@37423
   455
  | map_terms_stmt f (Classinst (arity, (super_instances, classparam_instances))) =
haftmann@37423
   456
      Classinst (arity, (super_instances, (pairself o map_classparam_instances_as_term) f classparam_instances));
haftmann@27711
   457
haftmann@27103
   458
fun is_cons program name = case Graph.get_node program name
haftmann@24219
   459
 of Datatypecons _ => true
haftmann@24219
   460
  | _ => false;
haftmann@24219
   461
haftmann@37415
   462
fun is_case (Fun (_, (_, SOME _))) = true
haftmann@37415
   463
  | is_case _ = false;
haftmann@37415
   464
haftmann@27103
   465
fun contr_classparam_typs program name = case Graph.get_node program name
haftmann@28663
   466
 of Classparam (_, class) => let
haftmann@28663
   467
        val Class (_, (_, (_, params))) = Graph.get_node program class;
haftmann@25621
   468
        val SOME ty = AList.lookup (op =) params name;
haftmann@25621
   469
        val (tys, res_ty) = unfold_fun ty;
haftmann@25621
   470
        fun no_tyvar (_ `%% tys) = forall no_tyvar tys
haftmann@25621
   471
          | no_tyvar (ITyVar _) = false;
haftmann@25621
   472
      in if no_tyvar res_ty
haftmann@25621
   473
        then map (fn ty => if no_tyvar ty then NONE else SOME ty) tys
haftmann@25621
   474
        else []
haftmann@25621
   475
      end
haftmann@25621
   476
  | _ => [];
haftmann@25621
   477
haftmann@32895
   478
fun labelled_name thy program name = case Graph.get_node program name
haftmann@32895
   479
 of Fun (c, _) => quote (Code.string_of_const thy c)
haftmann@32895
   480
  | Datatype (tyco, _) => "type " ^ quote (Sign.extern_type thy tyco)
haftmann@32895
   481
  | Datatypecons (c, _) => quote (Code.string_of_const thy c)
haftmann@32895
   482
  | Class (class, _) => "class " ^ quote (Sign.extern_class thy class)
haftmann@32895
   483
  | Classrel (sub, super) => let
haftmann@32895
   484
        val Class (sub, _) = Graph.get_node program sub
haftmann@32895
   485
        val Class (super, _) = Graph.get_node program super
haftmann@32895
   486
      in quote (Sign.extern_class thy sub ^ " < " ^ Sign.extern_class thy super) end
haftmann@32895
   487
  | Classparam (c, _) => quote (Code.string_of_const thy c)
haftmann@32895
   488
  | Classinst ((class, (tyco, _)), _) => let
haftmann@32895
   489
        val Class (class, _) = Graph.get_node program class
haftmann@32895
   490
        val Datatype (tyco, _) = Graph.get_node program tyco
haftmann@32895
   491
      in quote (Sign.extern_type thy tyco ^ " :: " ^ Sign.extern_class thy class) end
haftmann@32895
   492
haftmann@37688
   493
fun labelled_traceback thy program name =
haftmann@37688
   494
  let
haftmann@37688
   495
    val minimals = Graph.minimals program;
haftmann@37688
   496
    val traceback = these (get_first
haftmann@37688
   497
      (fn minimal => case Graph.irreducible_paths program (minimal, name)
haftmann@37688
   498
        of [] => NONE
haftmann@37688
   499
         | p :: ps => SOME p) minimals);
haftmann@37688
   500
  in space_implode " -> " (map (labelled_name thy program) traceback) end;
haftmann@37688
   501
haftmann@37415
   502
fun linear_stmts program =
haftmann@37415
   503
  rev (Graph.strong_conn program)
haftmann@37415
   504
  |> map (AList.make (Graph.get_node program));
haftmann@37415
   505
haftmann@32895
   506
fun group_stmts thy program =
haftmann@32895
   507
  let
haftmann@32895
   508
    fun is_fun (_, Fun _) = true | is_fun _ = false;
haftmann@32895
   509
    fun is_datatypecons (_, Datatypecons _) = true | is_datatypecons _ = false;
haftmann@32895
   510
    fun is_datatype (_, Datatype _) = true | is_datatype _ = false;
haftmann@32895
   511
    fun is_class (_, Class _) = true | is_class _ = false;
haftmann@32895
   512
    fun is_classrel (_, Classrel _) = true | is_classrel _ = false;
haftmann@32895
   513
    fun is_classparam (_, Classparam _) = true | is_classparam _ = false;
haftmann@32895
   514
    fun is_classinst (_, Classinst _) = true | is_classinst _ = false;
haftmann@32895
   515
    fun group stmts =
haftmann@32895
   516
      if forall (is_datatypecons orf is_datatype) stmts
haftmann@32895
   517
      then (filter is_datatype stmts, [], ([], []))
haftmann@32895
   518
      else if forall (is_class orf is_classrel orf is_classparam) stmts
haftmann@32895
   519
      then ([], filter is_class stmts, ([], []))
haftmann@32895
   520
      else if forall (is_fun orf is_classinst) stmts
haftmann@32895
   521
      then ([], [], List.partition is_fun stmts)
haftmann@32895
   522
      else error ("Illegal mutual dependencies: " ^
haftmann@32895
   523
        (commas o map (labelled_name thy program o fst)) stmts)
haftmann@32895
   524
  in
haftmann@37415
   525
    linear_stmts program
haftmann@32895
   526
    |> map group
haftmann@32895
   527
  end;
haftmann@32895
   528
haftmann@24219
   529
haftmann@27103
   530
(** translation kernel **)
haftmann@24219
   531
haftmann@28724
   532
(* generic mechanisms *)
haftmann@28724
   533
haftmann@28663
   534
fun ensure_stmt lookup declare generate thing (dep, (naming, program)) =
haftmann@24219
   535
  let
haftmann@28706
   536
    fun add_dep name = case dep of NONE => I
haftmann@28706
   537
      | SOME dep => Graph.add_edge (dep, name);
haftmann@28706
   538
    val (name, naming') = case lookup naming thing
haftmann@28706
   539
     of SOME name => (name, naming)
haftmann@28706
   540
      | NONE => declare thing naming;
haftmann@28706
   541
  in case try (Graph.get_node program) name
haftmann@28706
   542
   of SOME stmt => program
haftmann@28663
   543
        |> add_dep name
haftmann@28706
   544
        |> pair naming'
haftmann@28663
   545
        |> pair dep
haftmann@28663
   546
        |> pair name
haftmann@28706
   547
    | NONE => program
haftmann@28706
   548
        |> Graph.default_node (name, NoStmt)
haftmann@28706
   549
        |> add_dep name
haftmann@28706
   550
        |> pair naming'
haftmann@28706
   551
        |> curry generate (SOME name)
haftmann@28706
   552
        ||> snd
haftmann@28706
   553
        |-> (fn stmt => (apsnd o Graph.map_node name) (K stmt))
haftmann@28706
   554
        |> pair dep
haftmann@28706
   555
        |> pair name
haftmann@24219
   556
  end;
haftmann@24219
   557
haftmann@36272
   558
exception PERMISSIVE of unit;
haftmann@36272
   559
haftmann@37688
   560
fun translation_error thy permissive some_thm msg sub_msg (dep, (_, program)) =
haftmann@36272
   561
  if permissive
haftmann@36272
   562
  then raise PERMISSIVE ()
haftmann@36272
   563
  else let
haftmann@35226
   564
    val err_thm = case some_thm
haftmann@36272
   565
     of SOME thm => "\n(in code equation " ^ Display.string_of_thm_global thy thm ^ ")"
haftmann@36272
   566
      | NONE => "";
haftmann@37688
   567
    val traceback = case dep
haftmann@37688
   568
     of SOME name => labelled_traceback thy program name
haftmann@37688
   569
      | NONE => "";
haftmann@37688
   570
    val err_traceback = if traceback = ""
haftmann@37688
   571
      then "" else "\n(dependencies " ^ traceback ^ ")";
haftmann@37688
   572
  in error (msg ^ err_thm ^ err_traceback ^ ":\n" ^ sub_msg) end;
haftmann@26972
   573
haftmann@28724
   574
haftmann@28724
   575
(* translation *)
haftmann@28724
   576
haftmann@36272
   577
fun ensure_tyco thy algbr eqngr permissive tyco =
haftmann@30932
   578
  let
haftmann@36272
   579
    val (vs, cos) = Code.get_type thy tyco;
haftmann@30932
   580
    val stmt_datatype =
haftmann@36272
   581
      fold_map (translate_tyvar_sort thy algbr eqngr permissive) vs
haftmann@37423
   582
      ##>> fold_map (fn ((c, vs), tys) =>
haftmann@36272
   583
        ensure_const thy algbr eqngr permissive c
haftmann@37423
   584
        ##>> pair (map (unprefix "'") vs)
haftmann@36272
   585
        ##>> fold_map (translate_typ thy algbr eqngr permissive) tys) cos
haftmann@36272
   586
      #>> (fn info => Datatype (tyco, info));
haftmann@30932
   587
  in ensure_stmt lookup_tyco (declare_tyco thy) stmt_datatype tyco end
haftmann@36272
   588
and ensure_const thy algbr eqngr permissive c =
haftmann@30932
   589
  let
haftmann@30932
   590
    fun stmt_datatypecons tyco =
haftmann@36272
   591
      ensure_tyco thy algbr eqngr permissive tyco
haftmann@30932
   592
      #>> (fn tyco => Datatypecons (c, tyco));
haftmann@30932
   593
    fun stmt_classparam class =
haftmann@36272
   594
      ensure_class thy algbr eqngr permissive class
haftmann@30932
   595
      #>> (fn class => Classparam (c, class));
haftmann@34891
   596
    fun stmt_fun cert =
haftmann@32872
   597
      let
haftmann@35226
   598
        val ((vs, ty), eqns) = Code.equations_of_cert thy cert;
haftmann@37415
   599
        val some_case_cong = Code.get_case_cong thy c;
haftmann@32872
   600
      in
haftmann@36272
   601
        fold_map (translate_tyvar_sort thy algbr eqngr permissive) vs
haftmann@36272
   602
        ##>> translate_typ thy algbr eqngr permissive ty
haftmann@37415
   603
        ##>> translate_eqns thy algbr eqngr permissive eqns
haftmann@37415
   604
        #>> (fn info => Fun (c, (info, some_case_cong)))
haftmann@32872
   605
      end;
haftmann@35299
   606
    val stmt_const = case Code.get_type_of_constr_or_abstr thy c
haftmann@35226
   607
     of SOME (tyco, _) => stmt_datatypecons tyco
haftmann@30932
   608
      | NONE => (case AxClass.class_of_param thy c
haftmann@30932
   609
         of SOME class => stmt_classparam class
haftmann@34891
   610
          | NONE => stmt_fun (Code_Preproc.cert eqngr c))
haftmann@30932
   611
  in ensure_stmt lookup_const (declare_const thy) stmt_const c end
haftmann@36272
   612
and ensure_class thy (algbr as (_, algebra)) eqngr permissive class =
haftmann@24918
   613
  let
haftmann@37359
   614
    val super_classes = (Sorts.minimize_sort algebra o Sorts.super_classes algebra) class;
wenzelm@24969
   615
    val cs = #params (AxClass.get_info thy class);
haftmann@24918
   616
    val stmt_class =
haftmann@37359
   617
      fold_map (fn super_class => ensure_class thy algbr eqngr permissive super_class
haftmann@37359
   618
        ##>> ensure_classrel thy algbr eqngr permissive (class, super_class)) super_classes
haftmann@36272
   619
      ##>> fold_map (fn (c, ty) => ensure_const thy algbr eqngr permissive c
haftmann@36272
   620
        ##>> translate_typ thy algbr eqngr permissive ty) cs
haftmann@28663
   621
      #>> (fn info => Class (class, (unprefix "'" Name.aT, info)))
haftmann@28663
   622
  in ensure_stmt lookup_class (declare_class thy) stmt_class class end
haftmann@37359
   623
and ensure_classrel thy algbr eqngr permissive (sub_class, super_class) =
haftmann@24918
   624
  let
haftmann@24918
   625
    val stmt_classrel =
haftmann@37359
   626
      ensure_class thy algbr eqngr permissive sub_class
haftmann@37359
   627
      ##>> ensure_class thy algbr eqngr permissive super_class
haftmann@24918
   628
      #>> Classrel;
haftmann@37359
   629
  in ensure_stmt lookup_classrel (declare_classrel thy) stmt_classrel (sub_class, super_class) end
haftmann@36272
   630
and ensure_inst thy (algbr as (_, algebra)) eqngr permissive (class, tyco) =
haftmann@24918
   631
  let
haftmann@37359
   632
    val super_classes = (Sorts.minimize_sort algebra o Sorts.super_classes algebra) class;
haftmann@37423
   633
    val these_classparams = these o try (#params o AxClass.get_info thy);
haftmann@37423
   634
    val classparams = these_classparams class;
haftmann@37423
   635
    val further_classparams = maps these_classparams
haftmann@37423
   636
      ((Sorts.complete_sort algebra o Sorts.super_classes algebra) class);
haftmann@24918
   637
    val vs = Name.names Name.context "'a" (Sorts.mg_domain algebra tyco [class]);
haftmann@24918
   638
    val sorts' = Sorts.mg_domain (Sign.classes_of thy) tyco [class];
haftmann@24918
   639
    val vs' = map2 (fn (v, sort1) => fn sort2 => (v,
haftmann@24918
   640
      Sorts.inter_sort (Sign.classes_of thy) (sort1, sort2))) vs sorts';
haftmann@24918
   641
    val arity_typ = Type (tyco, map TFree vs);
haftmann@24918
   642
    val arity_typ' = Type (tyco, map (fn (v, sort) => TVar ((v, 0), sort)) vs');
haftmann@37359
   643
    fun translate_super_instance super_class =
haftmann@37359
   644
      ensure_class thy algbr eqngr permissive super_class
haftmann@37359
   645
      ##>> ensure_classrel thy algbr eqngr permissive (class, super_class)
haftmann@37359
   646
      ##>> translate_dicts thy algbr eqngr permissive NONE (arity_typ, [super_class])
haftmann@37359
   647
      #>> (fn ((super_class, classrel), [DictConst (inst, dss)]) =>
haftmann@37359
   648
            (super_class, (classrel, (inst, dss))));
haftmann@37359
   649
    fun translate_classparam_instance (c, ty) =
haftmann@24918
   650
      let
haftmann@37359
   651
        val raw_const = Const (c, map_type_tfree (K arity_typ') ty);
haftmann@37359
   652
        val thm = AxClass.unoverload_conv thy (Thm.cterm_of thy raw_const);
haftmann@37359
   653
        val const = (apsnd Logic.unvarifyT_global o dest_Const o snd
haftmann@24918
   654
          o Logic.dest_equals o Thm.prop_of) thm;
haftmann@24918
   655
      in
haftmann@36272
   656
        ensure_const thy algbr eqngr permissive c
haftmann@37359
   657
        ##>> translate_const thy algbr eqngr permissive (SOME thm) (const, NONE)
haftmann@37359
   658
        #>> (fn (c, IConst const') => ((c, const'), (thm, true)))
haftmann@24918
   659
      end;
haftmann@24918
   660
    val stmt_inst =
haftmann@36272
   661
      ensure_class thy algbr eqngr permissive class
haftmann@36272
   662
      ##>> ensure_tyco thy algbr eqngr permissive tyco
haftmann@36272
   663
      ##>> fold_map (translate_tyvar_sort thy algbr eqngr permissive) vs
haftmann@37359
   664
      ##>> fold_map translate_super_instance super_classes
haftmann@37359
   665
      ##>> fold_map translate_classparam_instance classparams
haftmann@37423
   666
      ##>> fold_map translate_classparam_instance further_classparams
haftmann@37423
   667
      #>> (fn (((((class, tyco), arity_args), super_instances),
haftmann@37423
   668
        classparam_instances), further_classparam_instances) =>
haftmann@37423
   669
          Classinst ((class, (tyco, arity_args)), (super_instances,
haftmann@37423
   670
            (classparam_instances, further_classparam_instances))));
haftmann@28663
   671
  in ensure_stmt lookup_instance (declare_instance thy) stmt_inst (class, tyco) end
haftmann@36272
   672
and translate_typ thy algbr eqngr permissive (TFree (v, _)) =
haftmann@30932
   673
      pair (ITyVar (unprefix "'" v))
haftmann@36272
   674
  | translate_typ thy algbr eqngr permissive (Type (tyco, tys)) =
haftmann@36272
   675
      ensure_tyco thy algbr eqngr permissive tyco
haftmann@36272
   676
      ##>> fold_map (translate_typ thy algbr eqngr permissive) tys
haftmann@30932
   677
      #>> (fn (tyco, tys) => tyco `%% tys)
haftmann@36272
   678
and translate_term thy algbr eqngr permissive some_thm (Const (c, ty), some_abs) =
haftmann@36272
   679
      translate_app thy algbr eqngr permissive some_thm (((c, ty), []), some_abs)
haftmann@36272
   680
  | translate_term thy algbr eqngr permissive some_thm (Free (v, _), some_abs) =
haftmann@31889
   681
      pair (IVar (SOME v))
haftmann@36272
   682
  | translate_term thy algbr eqngr permissive some_thm (Abs (v, ty, t), some_abs) =
haftmann@24918
   683
      let
haftmann@32270
   684
        val (v', t') = Syntax.variant_abs (Name.desymbolize false v, ty, t);
haftmann@32270
   685
        val v'' = if member (op =) (Term.add_free_names t' []) v'
haftmann@32270
   686
          then SOME v' else NONE
haftmann@24918
   687
      in
haftmann@36272
   688
        translate_typ thy algbr eqngr permissive ty
haftmann@36272
   689
        ##>> translate_term thy algbr eqngr permissive some_thm (t', some_abs)
haftmann@32270
   690
        #>> (fn (ty, t) => (v'', ty) `|=> t)
haftmann@24918
   691
      end
haftmann@36272
   692
  | translate_term thy algbr eqngr permissive some_thm (t as _ $ _, some_abs) =
haftmann@24918
   693
      case strip_comb t
haftmann@24918
   694
       of (Const (c, ty), ts) =>
haftmann@36272
   695
            translate_app thy algbr eqngr permissive some_thm (((c, ty), ts), some_abs)
haftmann@24918
   696
        | (t', ts) =>
haftmann@36272
   697
            translate_term thy algbr eqngr permissive some_thm (t', some_abs)
haftmann@36272
   698
            ##>> fold_map (translate_term thy algbr eqngr permissive some_thm o rpair NONE) ts
haftmann@24918
   699
            #>> (fn (t, ts) => t `$$ ts)
haftmann@36272
   700
and translate_eqn thy algbr eqngr permissive ((args, (rhs, some_abs)), (some_thm, proper)) =
haftmann@36272
   701
  fold_map (translate_term thy algbr eqngr permissive some_thm) args
haftmann@36272
   702
  ##>> translate_term thy algbr eqngr permissive some_thm (rhs, some_abs)
haftmann@35226
   703
  #>> rpair (some_thm, proper)
haftmann@37415
   704
and translate_eqns thy algbr eqngr permissive eqns prgrm =
haftmann@37415
   705
  prgrm |> fold_map (translate_eqn thy algbr eqngr permissive) eqns
haftmann@37415
   706
    handle PERMISSIVE () => ([], prgrm)
haftmann@36272
   707
and translate_const thy algbr eqngr permissive some_thm ((c, ty), some_abs) =
haftmann@30932
   708
  let
haftmann@37688
   709
    val abstraction_violation = (case some_abs of NONE => true | SOME abs => not (c = abs))
haftmann@35226
   710
        andalso Code.is_abstr thy c
haftmann@37423
   711
    val arg_typs = Sign.const_typargs thy (c, ty);
haftmann@32873
   712
    val sorts = Code_Preproc.sortargs eqngr c;
haftmann@37423
   713
    val function_typs = (fst o Term.strip_type) ty;
haftmann@26972
   714
  in
haftmann@37688
   715
    abstraction_violation ? translation_error thy permissive some_thm
haftmann@37688
   716
      "Abstraction violation" ("constant " ^ Code.string_of_const thy c)
haftmann@37688
   717
    #> ensure_const thy algbr eqngr permissive c
haftmann@37423
   718
    ##>> fold_map (translate_typ thy algbr eqngr permissive) arg_typs
haftmann@37423
   719
    ##>> fold_map (translate_dicts thy algbr eqngr permissive some_thm) (arg_typs ~~ sorts)
haftmann@37423
   720
    ##>> fold_map (translate_typ thy algbr eqngr permissive) function_typs
haftmann@37423
   721
    #>> (fn (((c, arg_typs), dss), function_typs) => IConst (c, ((arg_typs, dss), function_typs)))
haftmann@26972
   722
  end
haftmann@36272
   723
and translate_app_const thy algbr eqngr permissive some_thm ((c_ty, ts), some_abs) =
haftmann@36272
   724
  translate_const thy algbr eqngr permissive some_thm (c_ty, some_abs)
haftmann@36272
   725
  ##>> fold_map (translate_term thy algbr eqngr permissive some_thm o rpair NONE) ts
haftmann@24918
   726
  #>> (fn (t, ts) => t `$$ ts)
haftmann@36272
   727
and translate_case thy algbr eqngr permissive some_thm (num_args, (t_pos, case_pats)) (c_ty, ts) =
haftmann@24918
   728
  let
haftmann@31892
   729
    fun arg_types num_args ty = (fst o chop num_args o fst o strip_type) ty;
haftmann@31892
   730
    val tys = arg_types num_args (snd c_ty);
haftmann@29889
   731
    val ty = nth tys t_pos;
haftmann@31957
   732
    fun mk_constr c t = let val n = Code.args_number thy c
haftmann@31957
   733
      in ((c, arg_types n (fastype_of t) ---> ty), n) end;
haftmann@31892
   734
    val constrs = if null case_pats then []
haftmann@31892
   735
      else map2 mk_constr case_pats (nth_drop t_pos ts);
haftmann@31892
   736
    fun casify naming constrs ty ts =
haftmann@24918
   737
      let
haftmann@31934
   738
        val undefineds = map_filter (lookup_const naming) (Code.undefineds thy);
haftmann@31934
   739
        fun collapse_clause vs_map ts body =
haftmann@31934
   740
          let
haftmann@31934
   741
          in case body
haftmann@31934
   742
           of IConst (c, _) => if member (op =) undefineds c
haftmann@31934
   743
                then []
haftmann@31934
   744
                else [(ts, body)]
haftmann@31934
   745
            | ICase (((IVar (SOME v), _), subclauses), _) =>
haftmann@31934
   746
                if forall (fn (pat', body') => exists_var pat' v
haftmann@31934
   747
                  orelse not (exists_var body' v)) subclauses
haftmann@31934
   748
                then case AList.lookup (op =) vs_map v
haftmann@31934
   749
                 of SOME i => maps (fn (pat', body') =>
haftmann@31934
   750
                      collapse_clause (AList.delete (op =) v vs_map)
haftmann@31934
   751
                        (nth_map i (K pat') ts) body') subclauses
haftmann@31934
   752
                  | NONE => [(ts, body)]
haftmann@31934
   753
                else [(ts, body)]
haftmann@31934
   754
            | _ => [(ts, body)]
haftmann@31934
   755
          end;
haftmann@31934
   756
        fun mk_clause mk tys t =
haftmann@31934
   757
          let
haftmann@31934
   758
            val (vs, body) = unfold_abs_eta tys t;
haftmann@31934
   759
            val vs_map = fold_index (fn (i, (SOME v, _)) => cons (v, i) | _ => I) vs [];
haftmann@31934
   760
            val ts = map (IVar o fst) vs;
haftmann@31934
   761
          in map mk (collapse_clause vs_map ts body) end;
haftmann@31892
   762
        val t = nth ts t_pos;
haftmann@31892
   763
        val ts_clause = nth_drop t_pos ts;
haftmann@31934
   764
        val clauses = if null case_pats
haftmann@31934
   765
          then mk_clause (fn ([t], body) => (t, body)) [ty] (the_single ts_clause)
haftmann@31934
   766
          else maps (fn ((constr as IConst (_, (_, tys)), n), t) =>
haftmann@33956
   767
            mk_clause (fn (ts, body) => (constr `$$ ts, body)) (take n tys) t)
haftmann@31934
   768
              (constrs ~~ ts_clause);
haftmann@31892
   769
      in ((t, ty), clauses) end;
haftmann@24918
   770
  in
haftmann@36272
   771
    translate_const thy algbr eqngr permissive some_thm (c_ty, NONE)
haftmann@36272
   772
    ##>> fold_map (fn (constr, n) => translate_const thy algbr eqngr permissive some_thm (constr, NONE)
haftmann@36272
   773
      #>> rpair n) constrs
haftmann@36272
   774
    ##>> translate_typ thy algbr eqngr permissive ty
haftmann@36272
   775
    ##>> fold_map (translate_term thy algbr eqngr permissive some_thm o rpair NONE) ts
haftmann@31892
   776
    #-> (fn (((t, constrs), ty), ts) =>
haftmann@31892
   777
      `(fn (_, (naming, _)) => ICase (casify naming constrs ty ts, t `$$ ts)))
haftmann@24918
   778
  end
haftmann@36272
   779
and translate_app_case thy algbr eqngr permissive some_thm (case_scheme as (num_args, _)) ((c, ty), ts) =
haftmann@29910
   780
  if length ts < num_args then
haftmann@29910
   781
    let
haftmann@29910
   782
      val k = length ts;
haftmann@33956
   783
      val tys = (take (num_args - k) o drop k o fst o strip_type) ty;
haftmann@29910
   784
      val ctxt = (fold o fold_aterms) Term.declare_term_frees ts Name.context;
haftmann@29910
   785
      val vs = Name.names ctxt "a" tys;
haftmann@29910
   786
    in
haftmann@36272
   787
      fold_map (translate_typ thy algbr eqngr permissive) tys
haftmann@36272
   788
      ##>> translate_case thy algbr eqngr permissive some_thm case_scheme ((c, ty), ts @ map Free vs)
haftmann@31888
   789
      #>> (fn (tys, t) => map2 (fn (v, _) => pair (SOME v)) vs tys `|==> t)
haftmann@29910
   790
    end
haftmann@29910
   791
  else if length ts > num_args then
haftmann@36272
   792
    translate_case thy algbr eqngr permissive some_thm case_scheme ((c, ty), take num_args ts)
haftmann@36272
   793
    ##>> fold_map (translate_term thy algbr eqngr permissive some_thm o rpair NONE) (drop num_args ts)
haftmann@29910
   794
    #>> (fn (t, ts) => t `$$ ts)
haftmann@29910
   795
  else
haftmann@36272
   796
    translate_case thy algbr eqngr permissive some_thm case_scheme ((c, ty), ts)
haftmann@36272
   797
and translate_app thy algbr eqngr permissive some_thm (c_ty_ts as ((c, _), _), some_abs) =
haftmann@29910
   798
  case Code.get_case_scheme thy c
haftmann@36272
   799
   of SOME case_scheme => translate_app_case thy algbr eqngr permissive some_thm case_scheme c_ty_ts
haftmann@36272
   800
    | NONE => translate_app_const thy algbr eqngr permissive some_thm (c_ty_ts, some_abs)
haftmann@36272
   801
and translate_tyvar_sort thy (algbr as (proj_sort, _)) eqngr permissive (v, sort) =
haftmann@36272
   802
  fold_map (ensure_class thy algbr eqngr permissive) (proj_sort sort)
haftmann@30932
   803
  #>> (fn sort => (unprefix "'" v, sort))
haftmann@36272
   804
and translate_dicts thy (algbr as (proj_sort, algebra)) eqngr permissive some_thm (ty, sort) =
haftmann@30932
   805
  let
haftmann@37688
   806
    fun format_class_error e =
haftmann@37688
   807
      let
haftmann@37688
   808
        val err_class = Sorts.class_error (Syntax.pp_global thy) e;
haftmann@37688
   809
        val err_typ = "Type " ^ Syntax.string_of_typ_global thy ty ^ " not of sort "
haftmann@37688
   810
          ^ Syntax.string_of_sort_global thy sort;
haftmann@37688
   811
      in err_typ ^ "\n" ^ err_class end;
haftmann@30932
   812
    datatype typarg =
haftmann@30932
   813
        Global of (class * string) * typarg list list
haftmann@30932
   814
      | Local of (class * class) list * (string * (int * sort));
haftmann@30932
   815
    fun class_relation (Global ((_, tyco), yss), _) class =
haftmann@30932
   816
          Global ((class, tyco), yss)
haftmann@37359
   817
      | class_relation (Local (classrels, v), sub_class) super_class =
haftmann@37359
   818
          Local ((sub_class, super_class) :: classrels, v);
wenzelm@36102
   819
    fun type_constructor (tyco, _) yss class =
haftmann@30932
   820
      Global ((class, tyco), (map o map) fst yss);
haftmann@30932
   821
    fun type_variable (TFree (v, sort)) =
haftmann@30932
   822
      let
haftmann@30932
   823
        val sort' = proj_sort sort;
haftmann@30932
   824
      in map_index (fn (n, class) => (Local ([], (v, (n, sort'))), class)) sort' end;
haftmann@37688
   825
    val (class_error, typargs) = ("", Sorts.of_sort_derivation algebra
wenzelm@36102
   826
      {class_relation = K (Sorts.classrel_derivation algebra class_relation),
wenzelm@35972
   827
       type_constructor = type_constructor,
haftmann@37688
   828
       type_variable = type_variable} (ty, proj_sort sort))
haftmann@37688
   829
      handle Sorts.CLASS_ERROR e => (format_class_error e, []);
haftmann@30932
   830
    fun mk_dict (Global (inst, yss)) =
haftmann@36272
   831
          ensure_inst thy algbr eqngr permissive inst
haftmann@30932
   832
          ##>> (fold_map o fold_map) mk_dict yss
haftmann@30932
   833
          #>> (fn (inst, dss) => DictConst (inst, dss))
haftmann@31962
   834
      | mk_dict (Local (classrels, (v, (n, sort)))) =
haftmann@36272
   835
          fold_map (ensure_classrel thy algbr eqngr permissive) classrels
haftmann@31962
   836
          #>> (fn classrels => DictVar (classrels, (unprefix "'" v, (n, length sort))))
haftmann@37688
   837
  in
haftmann@37688
   838
    not (class_error = "")
haftmann@37688
   839
      ? translation_error thy permissive some_thm "Wellsortedness error" class_error
haftmann@37688
   840
    #> fold_map mk_dict typargs
haftmann@37688
   841
  end;
haftmann@24918
   842
haftmann@25969
   843
haftmann@27103
   844
(* store *)
haftmann@27103
   845
haftmann@34160
   846
structure Program = Code_Data
haftmann@27103
   847
(
haftmann@28663
   848
  type T = naming * program;
haftmann@28663
   849
  val empty = (empty_naming, Graph.empty);
haftmann@27103
   850
);
haftmann@27103
   851
haftmann@36272
   852
fun cache_generation thy (algebra, eqngr) f name =
haftmann@34246
   853
  Program.change_yield thy (fn naming_program => (NONE, naming_program)
haftmann@32873
   854
    |> f thy algebra eqngr name
haftmann@28663
   855
    |-> (fn name => fn (_, naming_program) => (name, naming_program)));
haftmann@27103
   856
haftmann@36272
   857
fun transient_generation thy (algebra, eqngr) f name =
haftmann@36272
   858
  (NONE, (empty_naming, Graph.empty))
haftmann@36272
   859
  |> f thy algebra eqngr name
haftmann@36272
   860
  |-> (fn name => fn (_, naming_program) => (name, naming_program));
haftmann@36272
   861
haftmann@27103
   862
haftmann@27103
   863
(* program generation *)
haftmann@27103
   864
haftmann@36272
   865
fun consts_program thy permissive cs =
haftmann@27103
   866
  let
haftmann@28663
   867
    fun project_consts cs (naming, program) =
haftmann@27103
   868
      let
haftmann@27103
   869
        val cs_all = Graph.all_succs program cs;
haftmann@28663
   870
      in (cs, (naming, Graph.subgraph (member (op =) cs_all) program)) end;
haftmann@32873
   871
    fun generate_consts thy algebra eqngr =
haftmann@36272
   872
      fold_map (ensure_const thy algebra eqngr permissive);
haftmann@36272
   873
    val invoke_generation = if permissive
haftmann@36272
   874
      then transient_generation else cache_generation
haftmann@27103
   875
  in
haftmann@31125
   876
    invoke_generation thy (Code_Preproc.obtain thy cs []) generate_consts cs
haftmann@27103
   877
    |-> project_consts
haftmann@27103
   878
  end;
haftmann@27103
   879
haftmann@27103
   880
haftmann@27103
   881
(* value evaluation *)
haftmann@25969
   882
haftmann@32873
   883
fun ensure_value thy algbr eqngr t =
haftmann@24918
   884
  let
haftmann@24918
   885
    val ty = fastype_of t;
haftmann@24918
   886
    val vs = fold_term_types (K (fold_atyps (insert (eq_fst op =)
haftmann@24918
   887
      o dest_TFree))) t [];
haftmann@24918
   888
    val stmt_value =
haftmann@36272
   889
      fold_map (translate_tyvar_sort thy algbr eqngr false) vs
haftmann@36272
   890
      ##>> translate_typ thy algbr eqngr false ty
haftmann@36272
   891
      ##>> translate_term thy algbr eqngr false NONE (Code.subst_signatures thy t, NONE)
haftmann@28663
   892
      #>> (fn ((vs, ty), t) => Fun
haftmann@37412
   893
        (Term.dummy_patternN, (((vs, ty), [(([], t), (NONE, true))]), NONE)));
haftmann@31063
   894
    fun term_value (dep, (naming, program1)) =
haftmann@26011
   895
      let
haftmann@37412
   896
        val Fun (_, ((vs_ty, [(([], t), _)]), _)) =
haftmann@28663
   897
          Graph.get_node program1 Term.dummy_patternN;
haftmann@28663
   898
        val deps = Graph.imm_succs program1 Term.dummy_patternN;
haftmann@28663
   899
        val program2 = Graph.del_nodes [Term.dummy_patternN] program1;
haftmann@27103
   900
        val deps_all = Graph.all_succs program2 deps;
haftmann@27103
   901
        val program3 = Graph.subgraph (member (op =) deps_all) program2;
haftmann@31063
   902
      in (((naming, program3), ((vs_ty, t), deps)), (dep, (naming, program2))) end;
haftmann@24918
   903
  in
haftmann@28663
   904
    ensure_stmt ((K o K) NONE) pair stmt_value Term.dummy_patternN
haftmann@26011
   905
    #> snd
haftmann@31063
   906
    #> term_value
haftmann@24918
   907
  end;
haftmann@24918
   908
haftmann@32873
   909
fun base_evaluator thy evaluator algebra eqngr vs t =
haftmann@27103
   910
  let
haftmann@31063
   911
    val (((naming, program), (((vs', ty'), t'), deps)), _) =
haftmann@36272
   912
      cache_generation thy (algebra, eqngr) ensure_value t;
haftmann@30947
   913
    val vs'' = map (fn (v, _) => (v, (the o AList.lookup (op =) vs o prefix "'") v)) vs';
haftmann@31063
   914
  in evaluator naming program ((vs'', (vs', ty')), t') deps end;
haftmann@27103
   915
haftmann@32101
   916
fun eval_conv thy = Code_Preproc.eval_conv thy o base_evaluator thy;
haftmann@32101
   917
fun eval thy postproc = Code_Preproc.eval thy postproc o base_evaluator thy;
haftmann@30942
   918
haftmann@30942
   919
haftmann@30942
   920
(** diagnostic commands **)
haftmann@30942
   921
haftmann@31036
   922
fun read_const_exprs thy =
haftmann@31036
   923
  let
haftmann@36272
   924
    fun consts_of thy' = Symtab.fold (fn (c, (_, NONE)) => cons c | _ => I)
haftmann@36272
   925
      ((snd o #constants o Consts.dest o #consts o Sign.rep_sg) thy') [];
haftmann@36272
   926
    fun belongs_here thy' c = forall
haftmann@36272
   927
      (fn thy'' => not (Sign.declared_const thy'' c)) (Theory.parents_of thy');
haftmann@36272
   928
    fun consts_of_select thy' = filter (belongs_here thy') (consts_of thy');
haftmann@36272
   929
    fun read_const_expr "*" = ([], consts_of thy)
haftmann@31036
   930
      | read_const_expr s = if String.isSuffix ".*" s
wenzelm@37216
   931
          then ([], consts_of_select (Thy_Info.the_theory (unsuffix ".*" s) thy))
haftmann@31156
   932
          else ([Code.read_const thy s], []);
haftmann@31036
   933
  in pairself flat o split_list o map read_const_expr end;
haftmann@31036
   934
haftmann@30942
   935
fun code_depgr thy consts =
haftmann@30942
   936
  let
haftmann@31125
   937
    val (_, eqngr) = Code_Preproc.obtain thy consts [];
haftmann@34160
   938
    val all_consts = Graph.all_succs eqngr consts;
haftmann@34891
   939
  in Graph.subgraph (member (op =) all_consts) eqngr end;
haftmann@30942
   940
haftmann@31125
   941
fun code_thms thy = Pretty.writeln o Code_Preproc.pretty thy o code_depgr thy;
haftmann@30942
   942
haftmann@30942
   943
fun code_deps thy consts =
haftmann@30942
   944
  let
haftmann@30942
   945
    val eqngr = code_depgr thy consts;
haftmann@30942
   946
    val constss = Graph.strong_conn eqngr;
haftmann@30942
   947
    val mapping = Symtab.empty |> fold (fn consts => fold (fn const =>
haftmann@30942
   948
      Symtab.update (const, consts)) consts) constss;
haftmann@30942
   949
    fun succs consts = consts
haftmann@30942
   950
      |> maps (Graph.imm_succs eqngr)
haftmann@30942
   951
      |> subtract (op =) consts
haftmann@30942
   952
      |> map (the o Symtab.lookup mapping)
haftmann@30942
   953
      |> distinct (op =);
haftmann@30942
   954
    val conn = [] |> fold (fn consts => cons (consts, succs consts)) constss;
haftmann@31156
   955
    fun namify consts = map (Code.string_of_const thy) consts
haftmann@30942
   956
      |> commas;
haftmann@30942
   957
    val prgr = map (fn (consts, constss) =>
haftmann@30942
   958
      { name = namify consts, ID = namify consts, dir = "", unfold = true,
haftmann@30942
   959
        path = "", parents = map namify constss }) conn;
haftmann@30942
   960
  in Present.display_graph prgr end;
haftmann@30942
   961
haftmann@30942
   962
local
haftmann@30942
   963
haftmann@31036
   964
fun code_thms_cmd thy = code_thms thy o op @ o read_const_exprs thy;
haftmann@31036
   965
fun code_deps_cmd thy = code_deps thy o op @ o read_const_exprs thy;
haftmann@30942
   966
haftmann@30942
   967
in
haftmann@30942
   968
haftmann@30942
   969
val _ =
wenzelm@36970
   970
  Outer_Syntax.improper_command "code_thms" "print system of code equations for code" Keyword.diag
wenzelm@36970
   971
    (Scan.repeat1 Parse.term_group
haftmann@30942
   972
      >> (fn cs => Toplevel.no_timing o Toplevel.unknown_theory
haftmann@30942
   973
        o Toplevel.keep ((fn thy => code_thms_cmd thy cs) o Toplevel.theory_of)));
haftmann@30942
   974
haftmann@30942
   975
val _ =
wenzelm@36970
   976
  Outer_Syntax.improper_command "code_deps" "visualize dependencies of code equations for code"
wenzelm@36970
   977
    Keyword.diag
wenzelm@36970
   978
    (Scan.repeat1 Parse.term_group
haftmann@30942
   979
      >> (fn cs => Toplevel.no_timing o Toplevel.unknown_theory
haftmann@30942
   980
        o Toplevel.keep ((fn thy => code_deps_cmd thy cs) o Toplevel.theory_of)));
haftmann@30942
   981
haftmann@30942
   982
end;
haftmann@27103
   983
haftmann@24219
   984
end; (*struct*)
haftmann@24219
   985
haftmann@24219
   986
haftmann@28054
   987
structure Basic_Code_Thingol: BASIC_CODE_THINGOL = Code_Thingol;