src/Tools/nbe.ML
author haftmann
Mon, 23 Aug 2010 11:51:33 +0200
changeset 38912 ae4c5d251257
parent 38908 9ff76d0f0610
child 38915 975e4f729127
permissions -rw-r--r--
use conv alias
haftmann@24590
     1
(*  Title:      Tools/nbe.ML
haftmann@24155
     2
    Authors:    Klaus Aehlig, LMU Muenchen; Tobias Nipkow, Florian Haftmann, TU Muenchen
haftmann@24155
     3
haftmann@24839
     4
Normalization by evaluation, based on generic code generator.
haftmann@24155
     5
*)
haftmann@24155
     6
haftmann@24155
     7
signature NBE =
haftmann@24155
     8
sig
haftmann@38912
     9
  val dynamic_eval_conv: conv
haftmann@38908
    10
  val dynamic_eval_value: theory -> term -> term
haftmann@25101
    11
wenzelm@25204
    12
  datatype Univ =
haftmann@26064
    13
      Const of int * Univ list               (*named (uninterpreted) constants*)
haftmann@25924
    14
    | DFree of string * int                  (*free (uninterpreted) dictionary parameters*)
haftmann@24155
    15
    | BVar of int * Univ list
haftmann@28350
    16
    | Abs of (int * (Univ list -> Univ)) * Univ list
haftmann@25924
    17
  val apps: Univ -> Univ list -> Univ        (*explicit applications*)
haftmann@25944
    18
  val abss: int -> (Univ list -> Univ) -> Univ
haftmann@28337
    19
                                             (*abstractions as closures*)
haftmann@28350
    20
  val same: Univ -> Univ -> bool
haftmann@24155
    21
wenzelm@32740
    22
  val univs_ref: (unit -> Univ list -> Univ list) option Unsynchronized.ref
wenzelm@32740
    23
  val trace: bool Unsynchronized.ref
haftmann@25924
    24
haftmann@26747
    25
  val setup: theory -> theory
haftmann@32544
    26
  val add_const_alias: thm -> theory -> theory
haftmann@24155
    27
end;
haftmann@24155
    28
haftmann@24155
    29
structure Nbe: NBE =
haftmann@24155
    30
struct
haftmann@24155
    31
haftmann@24155
    32
(* generic non-sense *)
haftmann@24155
    33
wenzelm@32740
    34
val trace = Unsynchronized.ref false;
haftmann@32544
    35
fun traced f x = if !trace then (tracing (f x); x) else x;
haftmann@24155
    36
haftmann@24155
    37
haftmann@32544
    38
(** certificates and oracle for "trivial type classes" **)
haftmann@32544
    39
wenzelm@33522
    40
structure Triv_Class_Data = Theory_Data
haftmann@32544
    41
(
haftmann@32544
    42
  type T = (class * thm) list;
haftmann@32544
    43
  val empty = [];
haftmann@32544
    44
  val extend = I;
wenzelm@33522
    45
  fun merge data : T = AList.merge (op =) (K true) data;
haftmann@32544
    46
);
haftmann@32544
    47
haftmann@32544
    48
fun add_const_alias thm thy =
haftmann@32544
    49
  let
haftmann@32544
    50
    val (ofclass, eqn) = case try Logic.dest_equals (Thm.prop_of thm)
haftmann@32544
    51
     of SOME ofclass_eq => ofclass_eq
haftmann@32544
    52
      | _ => error ("Bad certificate: " ^ Display.string_of_thm_global thy thm);
haftmann@32544
    53
    val (T, class) = case try Logic.dest_of_class ofclass
haftmann@32544
    54
     of SOME T_class => T_class
haftmann@32544
    55
      | _ => error ("Bad certificate: " ^ Display.string_of_thm_global thy thm);
haftmann@32544
    56
    val tvar = case try Term.dest_TVar T
haftmann@32544
    57
     of SOME (tvar as (_, sort)) => if null (filter (can (AxClass.get_info thy)) sort)
haftmann@32544
    58
          then tvar
haftmann@32544
    59
          else error ("Bad sort: " ^ Display.string_of_thm_global thy thm)
haftmann@32544
    60
      | _ => error ("Bad type: " ^ Display.string_of_thm_global thy thm);
haftmann@32544
    61
    val _ = if Term.add_tvars eqn [] = [tvar] then ()
haftmann@32544
    62
      else error ("Inconsistent type: " ^ Display.string_of_thm_global thy thm);
haftmann@32544
    63
    val lhs_rhs = case try Logic.dest_equals eqn
haftmann@32544
    64
     of SOME lhs_rhs => lhs_rhs
haftmann@32544
    65
      | _ => error ("Not an equation: " ^ Syntax.string_of_term_global thy eqn);
haftmann@32544
    66
    val c_c' = case try (pairself (Code.check_const thy)) lhs_rhs
haftmann@32544
    67
     of SOME c_c' => c_c'
haftmann@32544
    68
      | _ => error ("Not an equation with two constants: "
haftmann@32544
    69
          ^ Syntax.string_of_term_global thy eqn);
haftmann@32544
    70
    val _ = if the_list (AxClass.class_of_param thy (snd c_c')) = [class] then ()
haftmann@32544
    71
      else error ("Inconsistent class: " ^ Display.string_of_thm_global thy thm);
haftmann@32544
    72
  in Triv_Class_Data.map (AList.update (op =) (class, thm)) thy end;
haftmann@32544
    73
haftmann@32544
    74
local
haftmann@32544
    75
haftmann@32544
    76
val get_triv_classes = map fst o Triv_Class_Data.get;
haftmann@32544
    77
haftmann@32544
    78
val (_, triv_of_class) = Context.>>> (Context.map_theory_result
haftmann@36982
    79
  (Thm.add_oracle (Binding.name "triv_of_class", fn (thy, T, class) =>
haftmann@32544
    80
    Thm.cterm_of thy (Logic.mk_of_class (T, class)))));
haftmann@32544
    81
haftmann@32544
    82
in
haftmann@32544
    83
haftmann@32544
    84
fun lift_triv_classes_conv thy conv ct =
haftmann@32544
    85
  let
haftmann@32544
    86
    val algebra = Sign.classes_of thy;
haftmann@36982
    87
    val certT = Thm.ctyp_of thy;
haftmann@32544
    88
    val triv_classes = get_triv_classes thy;
haftmann@36982
    89
    fun additional_classes sort = filter_out (fn class => Sorts.sort_le algebra (sort, [class])) triv_classes;
haftmann@36982
    90
    fun mk_entry (v, sort) =
haftmann@36982
    91
      let
haftmann@36982
    92
        val T = TFree (v, sort);
haftmann@36982
    93
        val cT = certT T;
haftmann@36982
    94
        val triv_sort = additional_classes sort;
haftmann@36982
    95
      in
haftmann@36982
    96
        (v, (Sorts.inter_sort algebra (sort, triv_sort),
haftmann@36982
    97
          (cT, AList.make (fn class => Thm.of_class (cT, class)) sort
haftmann@36982
    98
            @ AList.make (fn class => triv_of_class (thy, T, class)) triv_sort)))
haftmann@36982
    99
      end;
haftmann@36982
   100
    val vs_tab = map mk_entry (Term.add_tfrees (Thm.term_of ct) []);
haftmann@36982
   101
    fun instantiate thm =
haftmann@36982
   102
      let
haftmann@36982
   103
        val cert_tvars = map (certT o TVar) (Term.add_tvars
haftmann@36982
   104
          ((fst o Logic.dest_equals o Logic.strip_imp_concl o Thm.prop_of) thm) []);
haftmann@36982
   105
        val instantiation =
haftmann@36982
   106
          map2 (fn cert_tvar => fn (_, (_, (cT, _))) => (cert_tvar, cT)) cert_tvars vs_tab;
haftmann@36982
   107
      in Thm.instantiate (instantiation, []) thm end;
haftmann@36982
   108
    fun of_class (TFree (v, _), class) =
haftmann@36982
   109
          the (AList.lookup (op =) ((snd o snd o the o AList.lookup (op =) vs_tab) v) class)
haftmann@36982
   110
      | of_class (T, _) = error ("Bad type " ^ Syntax.string_of_typ_global thy T);
haftmann@32544
   111
    fun strip_of_class thm =
haftmann@32544
   112
      let
haftmann@36982
   113
        val prems_of_class = Thm.prop_of thm
haftmann@36982
   114
          |> Logic.strip_imp_prems
haftmann@36982
   115
          |> map (Logic.dest_of_class #> of_class);
haftmann@36982
   116
      in fold Thm.elim_implies prems_of_class thm end;
wenzelm@36779
   117
  in
wenzelm@36779
   118
    ct
haftmann@36982
   119
    |> (Drule.cterm_fun o map_types o map_type_tfree)
haftmann@36982
   120
        (fn (v, sort) => TFree (v, (fst o the o AList.lookup (op =) vs_tab) v))
haftmann@32544
   121
    |> conv
haftmann@36982
   122
    |> Thm.strip_shyps
wenzelm@35845
   123
    |> Thm.varifyT_global
haftmann@36982
   124
    |> Thm.unconstrainT
haftmann@36982
   125
    |> instantiate
haftmann@32544
   126
    |> strip_of_class
haftmann@32544
   127
  end;
haftmann@32544
   128
haftmann@32544
   129
fun lift_triv_classes_rew thy rew t =
haftmann@32544
   130
  let
haftmann@32544
   131
    val algebra = Sign.classes_of thy;
haftmann@32544
   132
    val triv_classes = get_triv_classes thy;
haftmann@32544
   133
    val vs = Term.add_tfrees t [];
haftmann@32544
   134
  in t
haftmann@32544
   135
    |> (map_types o map_type_tfree)
haftmann@32544
   136
        (fn (v, sort) => TFree (v, Sorts.inter_sort algebra (sort, triv_classes)))
haftmann@32544
   137
    |> rew
haftmann@32544
   138
    |> (map_types o map_type_tfree)
haftmann@32544
   139
        (fn (v, _) => TFree (v, the (AList.lookup (op =) vs v)))
haftmann@32544
   140
  end;
haftmann@32544
   141
haftmann@32544
   142
end;
haftmann@32544
   143
haftmann@32544
   144
haftmann@32544
   145
(** the semantic universe **)
haftmann@24155
   146
haftmann@24155
   147
(*
haftmann@24155
   148
   Functions are given by their semantical function value. To avoid
haftmann@24155
   149
   trouble with the ML-type system, these functions have the most
haftmann@24155
   150
   generic type, that is "Univ list -> Univ". The calling convention is
haftmann@24155
   151
   that the arguments come as a list, the last argument first. In
haftmann@24155
   152
   other words, a function call that usually would look like
haftmann@24155
   153
haftmann@24155
   154
   f x_1 x_2 ... x_n   or   f(x_1,x_2, ..., x_n)
haftmann@24155
   155
haftmann@24155
   156
   would be in our convention called as
haftmann@24155
   157
haftmann@24155
   158
              f [x_n,..,x_2,x_1]
haftmann@24155
   159
haftmann@24155
   160
   Moreover, to handle functions that are still waiting for some
haftmann@24155
   161
   arguments we have additionally a list of arguments collected to far
haftmann@24155
   162
   and the number of arguments we're still waiting for.
haftmann@24155
   163
*)
haftmann@24155
   164
wenzelm@25204
   165
datatype Univ =
haftmann@26064
   166
    Const of int * Univ list           (*named (uninterpreted) constants*)
haftmann@25924
   167
  | DFree of string * int              (*free (uninterpreted) dictionary parameters*)
haftmann@27499
   168
  | BVar of int * Univ list            (*bound variables, named*)
haftmann@24155
   169
  | Abs of (int * (Univ list -> Univ)) * Univ list
haftmann@27499
   170
                                       (*abstractions as closures*);
haftmann@24155
   171
haftmann@28350
   172
fun same (Const (k, xs)) (Const (l, ys)) = k = l andalso sames xs ys
haftmann@28350
   173
  | same (DFree (s, k)) (DFree (t, l)) = s = t andalso k = l
haftmann@28350
   174
  | same (BVar (k, xs)) (BVar (l, ys)) = k = l andalso sames xs ys
haftmann@28350
   175
  | same _ _ = false
haftmann@28350
   176
and sames xs ys = length xs = length ys andalso forall (uncurry same) (xs ~~ ys);
haftmann@28350
   177
haftmann@35371
   178
haftmann@24155
   179
(* constructor functions *)
haftmann@24155
   180
haftmann@25944
   181
fun abss n f = Abs ((n, f), []);
haftmann@25924
   182
fun apps (Abs ((n, f), xs)) ys = let val k = n - length ys in
haftmann@27499
   183
      case int_ord (k, 0)
haftmann@27499
   184
       of EQUAL => f (ys @ xs)
haftmann@27499
   185
        | LESS => let val (zs, ws) = chop (~ k) ys in apps (f (ws @ xs)) zs end
haftmann@27499
   186
        | GREATER => Abs ((k, f), ys @ xs) (*note: reverse convention also for apps!*)
haftmann@27499
   187
      end
haftmann@25924
   188
  | apps (Const (name, xs)) ys = Const (name, ys @ xs)
haftmann@27499
   189
  | apps (BVar (n, xs)) ys = BVar (n, ys @ xs);
haftmann@24155
   190
haftmann@24155
   191
haftmann@24155
   192
(** assembling and compiling ML code from terms **)
haftmann@24155
   193
haftmann@24155
   194
(* abstract ML syntax *)
haftmann@24155
   195
haftmann@24155
   196
infix 9 `$` `$$`;
haftmann@24155
   197
fun e1 `$` e2 = "(" ^ e1 ^ " " ^ e2 ^ ")";
haftmann@25101
   198
fun e `$$` [] = e
haftmann@25101
   199
  | e `$$` es = "(" ^ e ^ " " ^ space_implode " " es ^ ")";
haftmann@24590
   200
fun ml_abs v e = "(fn " ^ v ^ " => " ^ e ^ ")";
haftmann@24155
   201
haftmann@24155
   202
fun ml_cases t cs =
haftmann@24155
   203
  "(case " ^ t ^ " of " ^ space_implode " | " (map (fn (p, t) => p ^ " => " ^ t) cs) ^ ")";
haftmann@25944
   204
fun ml_Let d e = "let\n" ^ d ^ " in " ^ e ^ " end";
haftmann@28337
   205
fun ml_as v t = "(" ^ v ^ " as " ^ t ^ ")";
haftmann@24155
   206
haftmann@28350
   207
fun ml_and [] = "true"
haftmann@28350
   208
  | ml_and [x] = x
haftmann@28350
   209
  | ml_and xs = "(" ^ space_implode " andalso " xs ^ ")";
haftmann@28350
   210
fun ml_if b x y = "(if " ^ b ^ " then " ^ x ^ " else " ^ y ^ ")";
haftmann@28350
   211
haftmann@24155
   212
fun ml_list es = "[" ^ commas es ^ "]";
haftmann@24155
   213
haftmann@24155
   214
fun ml_fundefs ([(name, [([], e)])]) =
haftmann@24155
   215
      "val " ^ name ^ " = " ^ e ^ "\n"
haftmann@24155
   216
  | ml_fundefs (eqs :: eqss) =
haftmann@24155
   217
      let
haftmann@24155
   218
        fun fundef (name, eqs) =
haftmann@24155
   219
          let
haftmann@24155
   220
            fun eqn (es, e) = name ^ " " ^ space_implode " " es ^ " = " ^ e
haftmann@24155
   221
          in space_implode "\n  | " (map eqn eqs) end;
haftmann@24155
   222
      in
haftmann@24155
   223
        (prefix "fun " o fundef) eqs :: map (prefix "and " o fundef) eqss
wenzelm@26931
   224
        |> cat_lines
haftmann@24155
   225
        |> suffix "\n"
haftmann@24155
   226
      end;
haftmann@24155
   227
haftmann@35371
   228
haftmann@25944
   229
(* nbe specific syntax and sandbox communication *)
haftmann@25944
   230
wenzelm@32740
   231
val univs_ref = Unsynchronized.ref (NONE : (unit -> Univ list -> Univ list) option);
haftmann@24155
   232
haftmann@24155
   233
local
haftmann@28350
   234
  val prefix =      "Nbe.";
haftmann@28350
   235
  val name_ref =    prefix ^ "univs_ref";
haftmann@28350
   236
  val name_const =  prefix ^ "Const";
haftmann@28350
   237
  val name_abss =   prefix ^ "abss";
haftmann@28350
   238
  val name_apps =   prefix ^ "apps";
haftmann@28350
   239
  val name_same =   prefix ^ "same";
haftmann@24155
   240
in
haftmann@24155
   241
haftmann@25944
   242
val univs_cookie = (name_ref, univs_ref);
haftmann@25944
   243
haftmann@28337
   244
fun nbe_fun 0 "" = "nbe_value"
haftmann@28337
   245
  | nbe_fun i c = "c_" ^ translate_string (fn "." => "_" | c => c) c ^ "_" ^ string_of_int i;
haftmann@25101
   246
fun nbe_dict v n = "d_" ^ v ^ "_" ^ string_of_int n;
haftmann@24155
   247
fun nbe_bound v = "v_" ^ v;
haftmann@31888
   248
fun nbe_bound_optional NONE = "_"
haftmann@35486
   249
  | nbe_bound_optional (SOME v) = nbe_bound v;
haftmann@28337
   250
fun nbe_default v = "w_" ^ v;
haftmann@24155
   251
haftmann@25924
   252
(*note: these three are the "turning spots" where proper argument order is established!*)
haftmann@25924
   253
fun nbe_apps t [] = t
haftmann@25924
   254
  | nbe_apps t ts = name_apps `$$` [t, ml_list (rev ts)];
haftmann@28337
   255
fun nbe_apps_local i c ts = nbe_fun i c `$` ml_list (rev ts);
haftmann@28337
   256
fun nbe_apps_constr idx_of c ts =
haftmann@28337
   257
  let
haftmann@28337
   258
    val c' = if !trace then string_of_int (idx_of c) ^ " (*" ^ c ^ "*)"
haftmann@28337
   259
      else string_of_int (idx_of c);
haftmann@28337
   260
  in name_const `$` ("(" ^ c' ^ ", " ^ ml_list (rev ts) ^ ")") end;
haftmann@25924
   261
haftmann@24155
   262
fun nbe_abss 0 f = f `$` ml_list []
haftmann@25944
   263
  | nbe_abss n f = name_abss `$$` [string_of_int n, f];
haftmann@24155
   264
haftmann@28350
   265
fun nbe_same v1 v2 = "(" ^ name_same ^ " " ^ nbe_bound v1 ^ " " ^ nbe_bound v2 ^ ")";
haftmann@28350
   266
haftmann@24155
   267
end;
haftmann@24155
   268
haftmann@28054
   269
open Basic_Code_Thingol;
haftmann@24155
   270
haftmann@35371
   271
haftmann@25865
   272
(* code generation *)
haftmann@24155
   273
haftmann@26064
   274
fun assemble_eqnss idx_of deps eqnss =
haftmann@25944
   275
  let
haftmann@25944
   276
    fun prep_eqns (c, (vs, eqns)) =
haftmann@25944
   277
      let
haftmann@25944
   278
        val dicts = maps (fn (v, sort) => map_index (nbe_dict v o fst) sort) vs;
haftmann@28337
   279
        val num_args = length dicts + ((length o fst o hd) eqns);
haftmann@25944
   280
      in (c, (num_args, (dicts, eqns))) end;
haftmann@25944
   281
    val eqnss' = map prep_eqns eqnss;
haftmann@25101
   282
haftmann@25944
   283
    fun assemble_constapp c dss ts = 
haftmann@25924
   284
      let
haftmann@25944
   285
        val ts' = (maps o map) assemble_idict dss @ ts;
haftmann@25944
   286
      in case AList.lookup (op =) eqnss' c
haftmann@28337
   287
       of SOME (num_args, _) => if num_args <= length ts'
haftmann@28337
   288
            then let val (ts1, ts2) = chop num_args ts'
haftmann@28337
   289
            in nbe_apps (nbe_apps_local 0 c ts1) ts2
haftmann@28337
   290
            end else nbe_apps (nbe_abss num_args (nbe_fun 0 c)) ts'
haftmann@25944
   291
        | NONE => if member (op =) deps c
haftmann@28337
   292
            then nbe_apps (nbe_fun 0 c) ts'
haftmann@28337
   293
            else nbe_apps_constr idx_of c ts'
haftmann@25924
   294
      end
haftmann@25944
   295
    and assemble_idict (DictConst (inst, dss)) =
haftmann@25944
   296
          assemble_constapp inst dss []
haftmann@25944
   297
      | assemble_idict (DictVar (supers, (v, (n, _)))) =
haftmann@25944
   298
          fold_rev (fn super => assemble_constapp super [] o single) supers (nbe_dict v n);
haftmann@25924
   299
haftmann@28350
   300
    fun assemble_iterm constapp =
haftmann@24155
   301
      let
haftmann@28350
   302
        fun of_iterm match_cont t =
haftmann@25944
   303
          let
haftmann@28054
   304
            val (t', ts) = Code_Thingol.unfold_app t
haftmann@28350
   305
          in of_iapp match_cont t' (fold_rev (cons o of_iterm NONE) ts []) end
haftmann@31049
   306
        and of_iapp match_cont (IConst (c, ((_, dss), _))) ts = constapp c dss ts
haftmann@31889
   307
          | of_iapp match_cont (IVar v) ts = nbe_apps (nbe_bound_optional v) ts
haftmann@31724
   308
          | of_iapp match_cont ((v, _) `|=> t) ts =
haftmann@31888
   309
              nbe_apps (nbe_abss 1 (ml_abs (ml_list [nbe_bound_optional v]) (of_iterm NONE t))) ts
haftmann@28350
   310
          | of_iapp match_cont (ICase (((t, _), cs), t0)) ts =
haftmann@28350
   311
              nbe_apps (ml_cases (of_iterm NONE t)
haftmann@28350
   312
                (map (fn (p, t) => (of_iterm NONE p, of_iterm match_cont t)) cs
haftmann@28350
   313
                  @ [("_", case match_cont of SOME s => s | NONE => of_iterm NONE t0)])) ts
haftmann@25944
   314
      in of_iterm end;
haftmann@24155
   315
haftmann@28350
   316
    fun subst_nonlin_vars args =
haftmann@28350
   317
      let
haftmann@28350
   318
        val vs = (fold o Code_Thingol.fold_varnames)
wenzelm@33008
   319
          (fn v => AList.map_default (op =) (v, 0) (Integer.add 1)) args [];
haftmann@28350
   320
        val names = Name.make_context (map fst vs);
haftmann@28350
   321
        fun declare v k ctxt = let val vs = Name.invents ctxt v k
haftmann@28350
   322
          in (vs, fold Name.declare vs ctxt) end;
haftmann@28350
   323
        val (vs_renames, _) = fold_map (fn (v, k) => if k > 1
haftmann@28350
   324
          then declare v (k - 1) #>> (fn vs => (v, vs))
haftmann@28350
   325
          else pair (v, [])) vs names;
haftmann@28350
   326
        val samepairs = maps (fn (v, vs) => map (pair v) vs) vs_renames;
haftmann@28350
   327
        fun subst_vars (t as IConst _) samepairs = (t, samepairs)
haftmann@31889
   328
          | subst_vars (t as IVar NONE) samepairs = (t, samepairs)
haftmann@31889
   329
          | subst_vars (t as IVar (SOME v)) samepairs = (case AList.lookup (op =) samepairs v
haftmann@31889
   330
             of SOME v' => (IVar (SOME v'), AList.delete (op =) v samepairs)
haftmann@28350
   331
              | NONE => (t, samepairs))
haftmann@28350
   332
          | subst_vars (t1 `$ t2) samepairs = samepairs
haftmann@28350
   333
              |> subst_vars t1
haftmann@28350
   334
              ||>> subst_vars t2
haftmann@28350
   335
              |>> (op `$)
haftmann@28350
   336
          | subst_vars (ICase (_, t)) samepairs = subst_vars t samepairs;
haftmann@28350
   337
        val (args', _) = fold_map subst_vars args samepairs;
haftmann@28350
   338
      in (samepairs, args') end;
haftmann@28350
   339
haftmann@28337
   340
    fun assemble_eqn c dicts default_args (i, (args, rhs)) =
haftmann@28337
   341
      let
haftmann@28337
   342
        val is_eval = (c = "");
haftmann@28337
   343
        val default_rhs = nbe_apps_local (i+1) c (dicts @ default_args);
haftmann@28337
   344
        val match_cont = if is_eval then NONE else SOME default_rhs;
haftmann@28350
   345
        val assemble_arg = assemble_iterm
haftmann@28350
   346
          (fn c => fn _ => fn ts => nbe_apps_constr idx_of c ts) NONE;
haftmann@35371
   347
        val assemble_rhs = assemble_iterm assemble_constapp match_cont;
haftmann@28350
   348
        val (samepairs, args') = subst_nonlin_vars args;
haftmann@28350
   349
        val s_args = map assemble_arg args';
haftmann@28350
   350
        val s_rhs = if null samepairs then assemble_rhs rhs
haftmann@28350
   351
          else ml_if (ml_and (map (uncurry nbe_same) samepairs))
haftmann@28350
   352
            (assemble_rhs rhs) default_rhs;
haftmann@28337
   353
        val eqns = if is_eval then
haftmann@28350
   354
            [([ml_list (rev (dicts @ s_args))], s_rhs)]
haftmann@28337
   355
          else
haftmann@28350
   356
            [([ml_list (rev (dicts @ map2 ml_as default_args s_args))], s_rhs),
haftmann@28337
   357
              ([ml_list (rev (dicts @ default_args))], default_rhs)]
haftmann@28337
   358
      in (nbe_fun i c, eqns) end;
haftmann@28337
   359
haftmann@25944
   360
    fun assemble_eqns (c, (num_args, (dicts, eqns))) =
haftmann@25944
   361
      let
haftmann@28337
   362
        val default_args = map nbe_default
haftmann@28337
   363
          (Name.invent_list [] "a" (num_args - length dicts));
haftmann@28337
   364
        val eqns' = map_index (assemble_eqn c dicts default_args) eqns
haftmann@28337
   365
          @ (if c = "" then [] else [(nbe_fun (length eqns) c,
haftmann@28337
   366
            [([ml_list (rev (dicts @ default_args))],
haftmann@28337
   367
              nbe_apps_constr idx_of c (dicts @ default_args))])]);
haftmann@28337
   368
      in (eqns', nbe_abss num_args (nbe_fun 0 c)) end;
haftmann@24155
   369
haftmann@25944
   370
    val (fun_vars, fun_vals) = map_split assemble_eqns eqnss';
haftmann@28337
   371
    val deps_vars = ml_list (map (nbe_fun 0) deps);
haftmann@28337
   372
  in ml_abs deps_vars (ml_Let (ml_fundefs (flat fun_vars)) (ml_list fun_vals)) end;
haftmann@25944
   373
haftmann@35371
   374
haftmann@25944
   375
(* code compilation *)
haftmann@25944
   376
haftmann@36982
   377
fun compile_eqnss ctxt gr raw_deps [] = []
wenzelm@28274
   378
  | compile_eqnss ctxt gr raw_deps eqnss =
haftmann@24155
   379
      let
haftmann@26064
   380
        val (deps, deps_vals) = split_list (map_filter
haftmann@26064
   381
          (fn dep => Option.map (fn univ => (dep, univ)) (fst ((Graph.get_node gr dep)))) raw_deps);
haftmann@26064
   382
        val idx_of = raw_deps
haftmann@26064
   383
          |> map (fn dep => (dep, snd (Graph.get_node gr dep)))
haftmann@26064
   384
          |> AList.lookup (op =)
haftmann@26064
   385
          |> (fn f => the o f);
haftmann@26064
   386
        val s = assemble_eqnss idx_of deps eqnss;
haftmann@24155
   387
        val cs = map fst eqnss;
haftmann@25944
   388
      in
haftmann@25944
   389
        s
haftmann@32544
   390
        |> traced (fn s => "\n--- code to be evaluated:\n" ^ s)
wenzelm@30687
   391
        |> ML_Context.evaluate ctxt (!trace) univs_cookie
haftmann@25944
   392
        |> (fn f => f deps_vals)
haftmann@25944
   393
        |> (fn univs => cs ~~ univs)
haftmann@25944
   394
      end;
haftmann@25190
   395
wenzelm@30687
   396
haftmann@25944
   397
(* preparing function equations *)
haftmann@24155
   398
haftmann@37412
   399
fun eqns_of_stmt (_, Code_Thingol.Fun (_, ((_, []), _))) =
haftmann@25101
   400
      []
haftmann@37412
   401
  | eqns_of_stmt (const, Code_Thingol.Fun (_, (((vs, _), eqns), _))) =
haftmann@25101
   402
      [(const, (vs, map fst eqns))]
haftmann@28054
   403
  | eqns_of_stmt (_, Code_Thingol.Datatypecons _) =
haftmann@25101
   404
      []
haftmann@28054
   405
  | eqns_of_stmt (_, Code_Thingol.Datatype _) =
haftmann@25101
   406
      []
haftmann@37422
   407
  | eqns_of_stmt (class, Code_Thingol.Class (_, (v, (super_classes, classparams)))) =
haftmann@25101
   408
      let
haftmann@37359
   409
        val names = map snd super_classes @ map fst classparams;
haftmann@25101
   410
        val params = Name.invent_list [] "d" (length names);
haftmann@25101
   411
        fun mk (k, name) =
haftmann@25101
   412
          (name, ([(v, [])],
haftmann@31889
   413
            [([IConst (class, (([], []), [])) `$$ map (IVar o SOME) params],
haftmann@31889
   414
              IVar (SOME (nth params k)))]));
haftmann@25101
   415
      in map_index mk names end
haftmann@28054
   416
  | eqns_of_stmt (_, Code_Thingol.Classrel _) =
haftmann@25101
   417
      []
haftmann@28054
   418
  | eqns_of_stmt (_, Code_Thingol.Classparam _) =
haftmann@25101
   419
      []
haftmann@37424
   420
  | eqns_of_stmt (inst, Code_Thingol.Classinst ((class, (_, arity_args)), (super_instances, (classparam_instances, _)))) =
haftmann@37359
   421
      [(inst, (arity_args, [([], IConst (class, (([], []), [])) `$$
haftmann@37359
   422
        map (fn (_, (_, (inst, dss))) => IConst (inst, (([], dss), []))) super_instances
haftmann@37359
   423
        @ map (IConst o snd o fst) classparam_instances)]))];
haftmann@25101
   424
wenzelm@28274
   425
fun compile_stmts ctxt stmts_deps =
haftmann@24155
   426
  let
haftmann@25101
   427
    val names = map (fst o fst) stmts_deps;
haftmann@25101
   428
    val names_deps = map (fn ((name, _), deps) => (name, deps)) stmts_deps;
haftmann@25101
   429
    val eqnss = maps (eqns_of_stmt o fst) stmts_deps;
haftmann@26064
   430
    val refl_deps = names_deps
haftmann@25190
   431
      |> maps snd
haftmann@25190
   432
      |> distinct (op =)
haftmann@26064
   433
      |> fold (insert (op =)) names;
haftmann@26064
   434
    fun new_node name (gr, (maxidx, idx_tab)) = if can (Graph.get_node gr) name
haftmann@26064
   435
      then (gr, (maxidx, idx_tab))
haftmann@26064
   436
      else (Graph.new_node (name, (NONE, maxidx)) gr,
haftmann@26064
   437
        (maxidx + 1, Inttab.update_new (maxidx, name) idx_tab));
haftmann@25190
   438
    fun compile gr = eqnss
wenzelm@28274
   439
      |> compile_eqnss ctxt gr refl_deps
haftmann@25190
   440
      |> rpair gr;
haftmann@25101
   441
  in
haftmann@26064
   442
    fold new_node refl_deps
haftmann@26064
   443
    #> apfst (fold (fn (name, deps) => fold (curry Graph.add_edge name) deps) names_deps
haftmann@26064
   444
      #> compile
haftmann@26064
   445
      #-> fold (fn (name, univ) => (Graph.map_node name o apfst) (K (SOME univ))))
haftmann@25101
   446
  end;
haftmann@25101
   447
haftmann@35486
   448
fun ensure_stmts ctxt program =
haftmann@25101
   449
  let
haftmann@26064
   450
    fun add_stmts names (gr, (maxidx, idx_tab)) = if exists ((can o Graph.get_node) gr) names
haftmann@26064
   451
      then (gr, (maxidx, idx_tab))
haftmann@26064
   452
      else (gr, (maxidx, idx_tab))
wenzelm@28274
   453
        |> compile_stmts ctxt (map (fn name => ((name, Graph.get_node program name),
haftmann@27103
   454
          Graph.imm_succs program name)) names);
haftmann@28706
   455
  in
haftmann@28706
   456
    fold_rev add_stmts (Graph.strong_conn program)
haftmann@28706
   457
  end;
haftmann@25101
   458
haftmann@25944
   459
haftmann@25944
   460
(** evaluation **)
haftmann@25944
   461
haftmann@25944
   462
(* term evaluation *)
haftmann@25944
   463
haftmann@30947
   464
fun eval_term ctxt gr deps (vs : (string * sort) list, t) =
haftmann@25924
   465
  let 
haftmann@25924
   466
    val dict_frees = maps (fn (v, sort) => map_index (curry DFree v o fst) sort) vs;
haftmann@25924
   467
  in
haftmann@31064
   468
    ("", (vs, [([], t)]))
wenzelm@28274
   469
    |> singleton (compile_eqnss ctxt gr deps)
haftmann@25924
   470
    |> snd
haftmann@31064
   471
    |> (fn t => apps t (rev dict_frees))
haftmann@25924
   472
  end;
haftmann@24155
   473
haftmann@35371
   474
haftmann@24839
   475
(* reification *)
haftmann@24155
   476
haftmann@30947
   477
fun typ_of_itype program vs (ityco `%% itys) =
haftmann@30947
   478
      let
haftmann@30947
   479
        val Code_Thingol.Datatype (tyco, _) = Graph.get_node program ityco;
haftmann@30947
   480
      in Type (tyco, map (typ_of_itype program vs) itys) end
haftmann@30947
   481
  | typ_of_itype program vs (ITyVar v) =
haftmann@30947
   482
      let
haftmann@30947
   483
        val sort = (the o AList.lookup (op =) vs) v;
haftmann@30947
   484
      in TFree ("'" ^ v, sort) end;
haftmann@30947
   485
haftmann@28663
   486
fun term_of_univ thy program idx_tab t =
haftmann@24155
   487
  let
haftmann@25101
   488
    fun take_until f [] = []
haftmann@25101
   489
      | take_until f (x::xs) = if f x then [] else x :: take_until f xs;
haftmann@28663
   490
    fun is_dict (Const (idx, _)) = (case (Graph.get_node program o the o Inttab.lookup idx_tab) idx
haftmann@28663
   491
         of Code_Thingol.Class _ => true
haftmann@28663
   492
          | Code_Thingol.Classrel _ => true
haftmann@28663
   493
          | Code_Thingol.Classinst _ => true
haftmann@28663
   494
          | _ => false)
haftmann@25101
   495
      | is_dict (DFree _) = true
haftmann@25101
   496
      | is_dict _ = false;
haftmann@28663
   497
    fun const_of_idx idx = (case (Graph.get_node program o the o Inttab.lookup idx_tab) idx
haftmann@35371
   498
     of Code_Thingol.Fun (c, _) => c
haftmann@35371
   499
      | Code_Thingol.Datatypecons (c, _) => c
haftmann@35371
   500
      | Code_Thingol.Classparam (c, _) => c);
haftmann@24155
   501
    fun of_apps bounds (t, ts) =
haftmann@24155
   502
      fold_map (of_univ bounds) ts
haftmann@24155
   503
      #>> (fn ts' => list_comb (t, rev ts'))
haftmann@26064
   504
    and of_univ bounds (Const (idx, ts)) typidx =
haftmann@24155
   505
          let
haftmann@25101
   506
            val ts' = take_until is_dict ts;
haftmann@28663
   507
            val c = const_of_idx idx;
haftmann@31957
   508
            val T = map_type_tvar (fn ((v, i), _) =>
wenzelm@37153
   509
              Type_Infer.param typidx (v ^ string_of_int i, []))
haftmann@31957
   510
                (Sign.the_const_type thy c);
haftmann@29959
   511
            val typidx' = typidx + 1;
haftmann@31957
   512
          in of_apps bounds (Term.Const (c, T), ts') typidx' end
haftmann@27499
   513
      | of_univ bounds (BVar (n, ts)) typidx =
haftmann@27499
   514
          of_apps bounds (Bound (bounds - n - 1), ts) typidx
haftmann@24155
   515
      | of_univ bounds (t as Abs _) typidx =
haftmann@24155
   516
          typidx
haftmann@25924
   517
          |> of_univ (bounds + 1) (apps t [BVar (bounds, [])])
haftmann@24155
   518
          |-> (fn t' => pair (Term.Abs ("u", dummyT, t')))
haftmann@24155
   519
  in of_univ 0 t 0 |> fst end;
haftmann@24155
   520
haftmann@35371
   521
haftmann@25101
   522
(* function store *)
haftmann@25101
   523
haftmann@34160
   524
structure Nbe_Functions = Code_Data
haftmann@25101
   525
(
haftmann@35486
   526
  type T = (Univ option * int) Graph.T * (int * string Inttab.table);
haftmann@35486
   527
  val empty = (Graph.empty, (0, Inttab.empty));
haftmann@25101
   528
);
haftmann@25101
   529
haftmann@35371
   530
haftmann@25101
   531
(* compilation, evaluation and reification *)
haftmann@25101
   532
haftmann@35486
   533
fun compile_eval thy program vs_t deps =
haftmann@26064
   534
  let
wenzelm@36633
   535
    val ctxt = ProofContext.init_global thy;
haftmann@35486
   536
    val (gr, (_, idx_tab)) =
haftmann@35486
   537
      Nbe_Functions.change thy (ensure_stmts ctxt program);
haftmann@26064
   538
  in
haftmann@30947
   539
    vs_t
haftmann@34246
   540
    |> eval_term ctxt gr deps
haftmann@34246
   541
    |> term_of_univ thy program idx_tab
haftmann@26064
   542
  end;
haftmann@25101
   543
haftmann@35371
   544
haftmann@24155
   545
(* evaluation with type reconstruction *)
haftmann@24155
   546
haftmann@35486
   547
fun normalize thy program ((vs0, (vs, ty)), t) deps =
haftmann@24155
   548
  let
haftmann@30947
   549
    val ty' = typ_of_itype program vs0 ty;
wenzelm@27264
   550
    fun type_infer t =
wenzelm@37153
   551
      singleton (Type_Infer.infer_types (Syntax.pp_global thy) (Sign.tsig_of thy) I
wenzelm@27264
   552
        (try (Type.strip_sorts o Sign.the_const_type thy)) (K NONE) Name.context 0)
wenzelm@37153
   553
      (Type_Infer.constrain ty' t);
wenzelm@29272
   554
    fun check_tvars t = if null (Term.add_tvars t []) then t else
haftmann@24155
   555
      error ("Illegal schematic type variables in normalized term: "
wenzelm@32966
   556
        ^ setmp_CRITICAL show_types true (Syntax.string_of_term_global thy) t);
wenzelm@32966
   557
    val string_of_term = setmp_CRITICAL show_types true (Syntax.string_of_term_global thy);
haftmann@24155
   558
  in
haftmann@35486
   559
    compile_eval thy program (vs, t) deps
haftmann@32544
   560
    |> traced (fn t => "Normalized:\n" ^ string_of_term t)
haftmann@26739
   561
    |> type_infer
haftmann@32544
   562
    |> traced (fn t => "Types inferred:\n" ^ string_of_term t)
haftmann@26739
   563
    |> check_tvars
haftmann@36982
   564
    |> traced (fn _ => "---\n")
haftmann@24155
   565
  end;
haftmann@24155
   566
haftmann@32544
   567
haftmann@24155
   568
(* evaluation oracle *)
haftmann@24155
   569
haftmann@30947
   570
fun mk_equals thy lhs raw_rhs =
haftmann@26747
   571
  let
haftmann@30947
   572
    val ty = Thm.typ_of (Thm.ctyp_of_term lhs);
haftmann@30947
   573
    val eq = Thm.cterm_of thy (Term.Const ("==", ty --> ty --> propT));
haftmann@30947
   574
    val rhs = Thm.cterm_of thy raw_rhs;
haftmann@30947
   575
  in Thm.mk_binop eq lhs rhs end;
haftmann@26747
   576
haftmann@38908
   577
val (_, raw_oracle) = Context.>>> (Context.map_theory_result
haftmann@35486
   578
  (Thm.add_oracle (Binding.name "norm", fn (thy, program, vsp_ty_t, deps, ct) =>
haftmann@35486
   579
    mk_equals thy ct (normalize thy program vsp_ty_t deps))));
haftmann@30942
   580
haftmann@38908
   581
fun oracle thy program vsp_ty_t deps ct = raw_oracle (thy, program, vsp_ty_t, deps, ct);
haftmann@30942
   582
haftmann@31064
   583
fun no_frees_rew rew t =
haftmann@31064
   584
  let
haftmann@31064
   585
    val frees = map Free (Term.add_frees t []);
haftmann@31064
   586
  in
haftmann@31064
   587
    t
haftmann@31064
   588
    |> fold_rev lambda frees
haftmann@31064
   589
    |> rew
haftmann@31064
   590
    |> (fn t' => Term.betapplys (t', frees))
haftmann@31064
   591
  end;
haftmann@31064
   592
haftmann@38908
   593
val dynamic_eval_conv = Code_Simp.no_frees_conv (Conv.tap_thy
haftmann@38908
   594
  (fn thy => lift_triv_classes_conv thy (Code_Thingol.dynamic_eval_conv thy (K (oracle thy)))));
haftmann@24155
   595
haftmann@38908
   596
fun dynamic_eval_value thy = lift_triv_classes_rew thy
haftmann@38908
   597
  (no_frees_rew (Code_Thingol.dynamic_eval_value thy I (K (normalize thy))));
haftmann@24839
   598
haftmann@35371
   599
haftmann@24155
   600
(* evaluation command *)
haftmann@24155
   601
haftmann@24155
   602
fun norm_print_term ctxt modes t =
haftmann@24155
   603
  let
haftmann@24155
   604
    val thy = ProofContext.theory_of ctxt;
haftmann@38908
   605
    val t' = dynamic_eval_value thy t;
haftmann@24839
   606
    val ty' = Term.type_of t';
wenzelm@26952
   607
    val ctxt' = Variable.auto_fixes t ctxt;
wenzelm@37154
   608
    val p = Print_Mode.with_modes modes (fn () =>
wenzelm@26952
   609
      Pretty.block [Pretty.quote (Syntax.pretty_term ctxt' t'), Pretty.fbrk,
wenzelm@26952
   610
        Pretty.str "::", Pretty.brk 1, Pretty.quote (Syntax.pretty_typ ctxt' ty')]) ();
haftmann@24155
   611
  in Pretty.writeln p end;
haftmann@24155
   612
haftmann@24155
   613
haftmann@24155
   614
(** Isar setup **)
haftmann@24155
   615
wenzelm@24508
   616
fun norm_print_term_cmd (modes, s) state =
haftmann@24155
   617
  let val ctxt = Toplevel.context_of state
wenzelm@24508
   618
  in norm_print_term ctxt modes (Syntax.read_term ctxt s) end;
haftmann@24155
   619
haftmann@38908
   620
val setup = Value.add_evaluator ("nbe", dynamic_eval_value o ProofContext.theory_of);
haftmann@24155
   621
wenzelm@36970
   622
val opt_modes =
wenzelm@36970
   623
  Scan.optional (Parse.$$$ "(" |-- Parse.!!! (Scan.repeat1 Parse.xname --| Parse.$$$ ")")) [];
haftmann@24155
   624
wenzelm@24867
   625
val _ =
wenzelm@36970
   626
  Outer_Syntax.improper_command "normal_form" "normalize term by evaluation" Keyword.diag
wenzelm@36970
   627
    (opt_modes -- Parse.term >> (Toplevel.keep o norm_print_term_cmd));
haftmann@24155
   628
haftmann@24155
   629
end;
haftmann@28337
   630