src/Tools/nbe.ML
author haftmann
Thu, 14 May 2009 15:09:48 +0200
changeset 31156 90fed3d4430f
parent 31064 ce37d8f48a9f
child 31724 9b5a128cdb5c
permissions -rw-r--r--
merged module code_unit.ML into code.ML
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@25101
     9
  val norm_conv: cterm -> thm
haftmann@30970
    10
  val norm: 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@25204
    22
  val univs_ref: (unit -> Univ list -> Univ list) option ref
haftmann@24155
    23
  val trace: bool ref
haftmann@25924
    24
haftmann@26747
    25
  val setup: theory -> theory
haftmann@24155
    26
end;
haftmann@24155
    27
haftmann@24155
    28
structure Nbe: NBE =
haftmann@24155
    29
struct
haftmann@24155
    30
haftmann@24155
    31
(* generic non-sense *)
haftmann@24155
    32
haftmann@24155
    33
val trace = ref false;
haftmann@24155
    34
fun tracing f x = if !trace then (Output.tracing (f x); x) else x;
haftmann@24155
    35
haftmann@24155
    36
haftmann@24155
    37
(** the semantical universe **)
haftmann@24155
    38
haftmann@24155
    39
(*
haftmann@24155
    40
   Functions are given by their semantical function value. To avoid
haftmann@24155
    41
   trouble with the ML-type system, these functions have the most
haftmann@24155
    42
   generic type, that is "Univ list -> Univ". The calling convention is
haftmann@24155
    43
   that the arguments come as a list, the last argument first. In
haftmann@24155
    44
   other words, a function call that usually would look like
haftmann@24155
    45
haftmann@24155
    46
   f x_1 x_2 ... x_n   or   f(x_1,x_2, ..., x_n)
haftmann@24155
    47
haftmann@24155
    48
   would be in our convention called as
haftmann@24155
    49
haftmann@24155
    50
              f [x_n,..,x_2,x_1]
haftmann@24155
    51
haftmann@24155
    52
   Moreover, to handle functions that are still waiting for some
haftmann@24155
    53
   arguments we have additionally a list of arguments collected to far
haftmann@24155
    54
   and the number of arguments we're still waiting for.
haftmann@24155
    55
*)
haftmann@24155
    56
wenzelm@25204
    57
datatype Univ =
haftmann@26064
    58
    Const of int * Univ list           (*named (uninterpreted) constants*)
haftmann@25924
    59
  | DFree of string * int              (*free (uninterpreted) dictionary parameters*)
haftmann@27499
    60
  | BVar of int * Univ list            (*bound variables, named*)
haftmann@24155
    61
  | Abs of (int * (Univ list -> Univ)) * Univ list
haftmann@27499
    62
                                       (*abstractions as closures*);
haftmann@24155
    63
haftmann@28350
    64
fun same (Const (k, xs)) (Const (l, ys)) = k = l andalso sames xs ys
haftmann@28350
    65
  | same (DFree (s, k)) (DFree (t, l)) = s = t andalso k = l
haftmann@28350
    66
  | same (BVar (k, xs)) (BVar (l, ys)) = k = l andalso sames xs ys
haftmann@28350
    67
  | same _ _ = false
haftmann@28350
    68
and sames xs ys = length xs = length ys andalso forall (uncurry same) (xs ~~ ys);
haftmann@28350
    69
haftmann@24155
    70
(* constructor functions *)
haftmann@24155
    71
haftmann@25944
    72
fun abss n f = Abs ((n, f), []);
haftmann@25924
    73
fun apps (Abs ((n, f), xs)) ys = let val k = n - length ys in
haftmann@27499
    74
      case int_ord (k, 0)
haftmann@27499
    75
       of EQUAL => f (ys @ xs)
haftmann@27499
    76
        | LESS => let val (zs, ws) = chop (~ k) ys in apps (f (ws @ xs)) zs end
haftmann@27499
    77
        | GREATER => Abs ((k, f), ys @ xs) (*note: reverse convention also for apps!*)
haftmann@27499
    78
      end
haftmann@25924
    79
  | apps (Const (name, xs)) ys = Const (name, ys @ xs)
haftmann@27499
    80
  | apps (BVar (n, xs)) ys = BVar (n, ys @ xs);
haftmann@24155
    81
haftmann@24155
    82
haftmann@24155
    83
(** assembling and compiling ML code from terms **)
haftmann@24155
    84
haftmann@24155
    85
(* abstract ML syntax *)
haftmann@24155
    86
haftmann@24155
    87
infix 9 `$` `$$`;
haftmann@24155
    88
fun e1 `$` e2 = "(" ^ e1 ^ " " ^ e2 ^ ")";
haftmann@25101
    89
fun e `$$` [] = e
haftmann@25101
    90
  | e `$$` es = "(" ^ e ^ " " ^ space_implode " " es ^ ")";
haftmann@24590
    91
fun ml_abs v e = "(fn " ^ v ^ " => " ^ e ^ ")";
haftmann@24155
    92
haftmann@24155
    93
fun ml_cases t cs =
haftmann@24155
    94
  "(case " ^ t ^ " of " ^ space_implode " | " (map (fn (p, t) => p ^ " => " ^ t) cs) ^ ")";
haftmann@25944
    95
fun ml_Let d e = "let\n" ^ d ^ " in " ^ e ^ " end";
haftmann@28337
    96
fun ml_as v t = "(" ^ v ^ " as " ^ t ^ ")";
haftmann@24155
    97
haftmann@28350
    98
fun ml_and [] = "true"
haftmann@28350
    99
  | ml_and [x] = x
haftmann@28350
   100
  | ml_and xs = "(" ^ space_implode " andalso " xs ^ ")";
haftmann@28350
   101
fun ml_if b x y = "(if " ^ b ^ " then " ^ x ^ " else " ^ y ^ ")";
haftmann@28350
   102
haftmann@24155
   103
fun ml_list es = "[" ^ commas es ^ "]";
haftmann@24155
   104
haftmann@24155
   105
fun ml_fundefs ([(name, [([], e)])]) =
haftmann@24155
   106
      "val " ^ name ^ " = " ^ e ^ "\n"
haftmann@24155
   107
  | ml_fundefs (eqs :: eqss) =
haftmann@24155
   108
      let
haftmann@24155
   109
        fun fundef (name, eqs) =
haftmann@24155
   110
          let
haftmann@24155
   111
            fun eqn (es, e) = name ^ " " ^ space_implode " " es ^ " = " ^ e
haftmann@24155
   112
          in space_implode "\n  | " (map eqn eqs) end;
haftmann@24155
   113
      in
haftmann@24155
   114
        (prefix "fun " o fundef) eqs :: map (prefix "and " o fundef) eqss
wenzelm@26931
   115
        |> cat_lines
haftmann@24155
   116
        |> suffix "\n"
haftmann@24155
   117
      end;
haftmann@24155
   118
haftmann@25944
   119
(* nbe specific syntax and sandbox communication *)
haftmann@25944
   120
haftmann@25944
   121
val univs_ref = ref (NONE : (unit -> Univ list -> Univ list) option);
haftmann@24155
   122
haftmann@24155
   123
local
haftmann@28350
   124
  val prefix =      "Nbe.";
haftmann@28350
   125
  val name_ref =    prefix ^ "univs_ref";
haftmann@28350
   126
  val name_const =  prefix ^ "Const";
haftmann@28350
   127
  val name_abss =   prefix ^ "abss";
haftmann@28350
   128
  val name_apps =   prefix ^ "apps";
haftmann@28350
   129
  val name_same =   prefix ^ "same";
haftmann@24155
   130
in
haftmann@24155
   131
haftmann@25944
   132
val univs_cookie = (name_ref, univs_ref);
haftmann@25944
   133
haftmann@28337
   134
fun nbe_fun 0 "" = "nbe_value"
haftmann@28337
   135
  | nbe_fun i c = "c_" ^ translate_string (fn "." => "_" | c => c) c ^ "_" ^ string_of_int i;
haftmann@25101
   136
fun nbe_dict v n = "d_" ^ v ^ "_" ^ string_of_int n;
haftmann@24155
   137
fun nbe_bound v = "v_" ^ v;
haftmann@28337
   138
fun nbe_default v = "w_" ^ v;
haftmann@24155
   139
haftmann@25924
   140
(*note: these three are the "turning spots" where proper argument order is established!*)
haftmann@25924
   141
fun nbe_apps t [] = t
haftmann@25924
   142
  | nbe_apps t ts = name_apps `$$` [t, ml_list (rev ts)];
haftmann@28337
   143
fun nbe_apps_local i c ts = nbe_fun i c `$` ml_list (rev ts);
haftmann@28337
   144
fun nbe_apps_constr idx_of c ts =
haftmann@28337
   145
  let
haftmann@28337
   146
    val c' = if !trace then string_of_int (idx_of c) ^ " (*" ^ c ^ "*)"
haftmann@28337
   147
      else string_of_int (idx_of c);
haftmann@28337
   148
  in name_const `$` ("(" ^ c' ^ ", " ^ ml_list (rev ts) ^ ")") end;
haftmann@25924
   149
haftmann@24155
   150
fun nbe_abss 0 f = f `$` ml_list []
haftmann@25944
   151
  | nbe_abss n f = name_abss `$$` [string_of_int n, f];
haftmann@24155
   152
haftmann@28350
   153
fun nbe_same v1 v2 = "(" ^ name_same ^ " " ^ nbe_bound v1 ^ " " ^ nbe_bound v2 ^ ")";
haftmann@28350
   154
haftmann@24155
   155
end;
haftmann@24155
   156
haftmann@28054
   157
open Basic_Code_Thingol;
haftmann@24155
   158
haftmann@25865
   159
(* code generation *)
haftmann@24155
   160
haftmann@26064
   161
fun assemble_eqnss idx_of deps eqnss =
haftmann@25944
   162
  let
haftmann@25944
   163
    fun prep_eqns (c, (vs, eqns)) =
haftmann@25944
   164
      let
haftmann@25944
   165
        val dicts = maps (fn (v, sort) => map_index (nbe_dict v o fst) sort) vs;
haftmann@28337
   166
        val num_args = length dicts + ((length o fst o hd) eqns);
haftmann@25944
   167
      in (c, (num_args, (dicts, eqns))) end;
haftmann@25944
   168
    val eqnss' = map prep_eqns eqnss;
haftmann@25101
   169
haftmann@25944
   170
    fun assemble_constapp c dss ts = 
haftmann@25924
   171
      let
haftmann@25944
   172
        val ts' = (maps o map) assemble_idict dss @ ts;
haftmann@25944
   173
      in case AList.lookup (op =) eqnss' c
haftmann@28337
   174
       of SOME (num_args, _) => if num_args <= length ts'
haftmann@28337
   175
            then let val (ts1, ts2) = chop num_args ts'
haftmann@28337
   176
            in nbe_apps (nbe_apps_local 0 c ts1) ts2
haftmann@28337
   177
            end else nbe_apps (nbe_abss num_args (nbe_fun 0 c)) ts'
haftmann@25944
   178
        | NONE => if member (op =) deps c
haftmann@28337
   179
            then nbe_apps (nbe_fun 0 c) ts'
haftmann@28337
   180
            else nbe_apps_constr idx_of c ts'
haftmann@25924
   181
      end
haftmann@25944
   182
    and assemble_idict (DictConst (inst, dss)) =
haftmann@25944
   183
          assemble_constapp inst dss []
haftmann@25944
   184
      | assemble_idict (DictVar (supers, (v, (n, _)))) =
haftmann@25944
   185
          fold_rev (fn super => assemble_constapp super [] o single) supers (nbe_dict v n);
haftmann@25924
   186
haftmann@28350
   187
    fun assemble_iterm constapp =
haftmann@24155
   188
      let
haftmann@28350
   189
        fun of_iterm match_cont t =
haftmann@25944
   190
          let
haftmann@28054
   191
            val (t', ts) = Code_Thingol.unfold_app t
haftmann@28350
   192
          in of_iapp match_cont t' (fold_rev (cons o of_iterm NONE) ts []) end
haftmann@31049
   193
        and of_iapp match_cont (IConst (c, ((_, dss), _))) ts = constapp c dss ts
haftmann@28350
   194
          | of_iapp match_cont (IVar v) ts = nbe_apps (nbe_bound v) ts
haftmann@28350
   195
          | of_iapp match_cont ((v, _) `|-> t) ts =
haftmann@28350
   196
              nbe_apps (nbe_abss 1 (ml_abs (ml_list [nbe_bound v]) (of_iterm NONE t))) ts
haftmann@28350
   197
          | of_iapp match_cont (ICase (((t, _), cs), t0)) ts =
haftmann@28350
   198
              nbe_apps (ml_cases (of_iterm NONE t)
haftmann@28350
   199
                (map (fn (p, t) => (of_iterm NONE p, of_iterm match_cont t)) cs
haftmann@28350
   200
                  @ [("_", case match_cont of SOME s => s | NONE => of_iterm NONE t0)])) ts
haftmann@25944
   201
      in of_iterm end;
haftmann@24155
   202
haftmann@28350
   203
    fun subst_nonlin_vars args =
haftmann@28350
   204
      let
haftmann@28350
   205
        val vs = (fold o Code_Thingol.fold_varnames)
haftmann@28350
   206
          (fn v => AList.map_default (op =) (v, 0) (curry (op +) 1)) args [];
haftmann@28350
   207
        val names = Name.make_context (map fst vs);
haftmann@28350
   208
        fun declare v k ctxt = let val vs = Name.invents ctxt v k
haftmann@28350
   209
          in (vs, fold Name.declare vs ctxt) end;
haftmann@28350
   210
        val (vs_renames, _) = fold_map (fn (v, k) => if k > 1
haftmann@28350
   211
          then declare v (k - 1) #>> (fn vs => (v, vs))
haftmann@28350
   212
          else pair (v, [])) vs names;
haftmann@28350
   213
        val samepairs = maps (fn (v, vs) => map (pair v) vs) vs_renames;
haftmann@28350
   214
        fun subst_vars (t as IConst _) samepairs = (t, samepairs)
haftmann@28350
   215
          | subst_vars (t as IVar v) samepairs = (case AList.lookup (op =) samepairs v
haftmann@28350
   216
             of SOME v' => (IVar v', AList.delete (op =) v samepairs)
haftmann@28350
   217
              | NONE => (t, samepairs))
haftmann@28350
   218
          | subst_vars (t1 `$ t2) samepairs = samepairs
haftmann@28350
   219
              |> subst_vars t1
haftmann@28350
   220
              ||>> subst_vars t2
haftmann@28350
   221
              |>> (op `$)
haftmann@28350
   222
          | subst_vars (ICase (_, t)) samepairs = subst_vars t samepairs;
haftmann@28350
   223
        val (args', _) = fold_map subst_vars args samepairs;
haftmann@28350
   224
      in (samepairs, args') end;
haftmann@28350
   225
haftmann@28337
   226
    fun assemble_eqn c dicts default_args (i, (args, rhs)) =
haftmann@28337
   227
      let
haftmann@28337
   228
        val is_eval = (c = "");
haftmann@28337
   229
        val default_rhs = nbe_apps_local (i+1) c (dicts @ default_args);
haftmann@28337
   230
        val match_cont = if is_eval then NONE else SOME default_rhs;
haftmann@28350
   231
        val assemble_arg = assemble_iterm
haftmann@28350
   232
          (fn c => fn _ => fn ts => nbe_apps_constr idx_of c ts) NONE;
haftmann@28350
   233
        val assemble_rhs = assemble_iterm assemble_constapp match_cont ;
haftmann@28350
   234
        val (samepairs, args') = subst_nonlin_vars args;
haftmann@28350
   235
        val s_args = map assemble_arg args';
haftmann@28350
   236
        val s_rhs = if null samepairs then assemble_rhs rhs
haftmann@28350
   237
          else ml_if (ml_and (map (uncurry nbe_same) samepairs))
haftmann@28350
   238
            (assemble_rhs rhs) default_rhs;
haftmann@28337
   239
        val eqns = if is_eval then
haftmann@28350
   240
            [([ml_list (rev (dicts @ s_args))], s_rhs)]
haftmann@28337
   241
          else
haftmann@28350
   242
            [([ml_list (rev (dicts @ map2 ml_as default_args s_args))], s_rhs),
haftmann@28337
   243
              ([ml_list (rev (dicts @ default_args))], default_rhs)]
haftmann@28337
   244
      in (nbe_fun i c, eqns) end;
haftmann@28337
   245
haftmann@25944
   246
    fun assemble_eqns (c, (num_args, (dicts, eqns))) =
haftmann@25944
   247
      let
haftmann@28337
   248
        val default_args = map nbe_default
haftmann@28337
   249
          (Name.invent_list [] "a" (num_args - length dicts));
haftmann@28337
   250
        val eqns' = map_index (assemble_eqn c dicts default_args) eqns
haftmann@28337
   251
          @ (if c = "" then [] else [(nbe_fun (length eqns) c,
haftmann@28337
   252
            [([ml_list (rev (dicts @ default_args))],
haftmann@28337
   253
              nbe_apps_constr idx_of c (dicts @ default_args))])]);
haftmann@28337
   254
      in (eqns', nbe_abss num_args (nbe_fun 0 c)) end;
haftmann@24155
   255
haftmann@25944
   256
    val (fun_vars, fun_vals) = map_split assemble_eqns eqnss';
haftmann@28337
   257
    val deps_vars = ml_list (map (nbe_fun 0) deps);
haftmann@28337
   258
  in ml_abs deps_vars (ml_Let (ml_fundefs (flat fun_vars)) (ml_list fun_vals)) end;
haftmann@25944
   259
haftmann@25944
   260
(* code compilation *)
haftmann@25944
   261
wenzelm@28274
   262
fun compile_eqnss _ gr raw_deps [] = []
wenzelm@28274
   263
  | compile_eqnss ctxt gr raw_deps eqnss =
haftmann@24155
   264
      let
haftmann@26064
   265
        val (deps, deps_vals) = split_list (map_filter
haftmann@26064
   266
          (fn dep => Option.map (fn univ => (dep, univ)) (fst ((Graph.get_node gr dep)))) raw_deps);
haftmann@26064
   267
        val idx_of = raw_deps
haftmann@26064
   268
          |> map (fn dep => (dep, snd (Graph.get_node gr dep)))
haftmann@26064
   269
          |> AList.lookup (op =)
haftmann@26064
   270
          |> (fn f => the o f);
haftmann@26064
   271
        val s = assemble_eqnss idx_of deps eqnss;
haftmann@24155
   272
        val cs = map fst eqnss;
haftmann@25944
   273
      in
haftmann@25944
   274
        s
haftmann@25944
   275
        |> tracing (fn s => "\n--- code to be evaluated:\n" ^ s)
wenzelm@30687
   276
        |> ML_Context.evaluate ctxt (!trace) univs_cookie
haftmann@25944
   277
        |> (fn f => f deps_vals)
haftmann@25944
   278
        |> (fn univs => cs ~~ univs)
haftmann@25944
   279
      end;
haftmann@25190
   280
wenzelm@30687
   281
haftmann@25944
   282
(* preparing function equations *)
haftmann@24155
   283
haftmann@28663
   284
fun eqns_of_stmt (_, Code_Thingol.Fun (_, (_, []))) =
haftmann@25101
   285
      []
haftmann@28663
   286
  | eqns_of_stmt (const, Code_Thingol.Fun (_, ((vs, _), eqns))) =
haftmann@25101
   287
      [(const, (vs, map fst eqns))]
haftmann@28054
   288
  | eqns_of_stmt (_, Code_Thingol.Datatypecons _) =
haftmann@25101
   289
      []
haftmann@28054
   290
  | eqns_of_stmt (_, Code_Thingol.Datatype _) =
haftmann@25101
   291
      []
haftmann@28663
   292
  | eqns_of_stmt (class, Code_Thingol.Class (_, (v, (superclasses, classops)))) =
haftmann@25101
   293
      let
haftmann@25101
   294
        val names = map snd superclasses @ map fst classops;
haftmann@25101
   295
        val params = Name.invent_list [] "d" (length names);
haftmann@25101
   296
        fun mk (k, name) =
haftmann@25101
   297
          (name, ([(v, [])],
haftmann@31049
   298
            [([IConst (class, (([], []), [])) `$$ map IVar params], IVar (nth params k))]));
haftmann@25101
   299
      in map_index mk names end
haftmann@28054
   300
  | eqns_of_stmt (_, Code_Thingol.Classrel _) =
haftmann@25101
   301
      []
haftmann@28054
   302
  | eqns_of_stmt (_, Code_Thingol.Classparam _) =
haftmann@25101
   303
      []
haftmann@28054
   304
  | eqns_of_stmt (inst, Code_Thingol.Classinst ((class, (_, arities)), (superinsts, instops))) =
haftmann@31049
   305
      [(inst, (arities, [([], IConst (class, (([], []), [])) `$$
haftmann@31049
   306
        map (fn (_, (_, (inst, dicts))) => IConst (inst, (([], dicts), []))) superinsts
haftmann@25101
   307
        @ map (IConst o snd o fst) instops)]))];
haftmann@25101
   308
wenzelm@28274
   309
fun compile_stmts ctxt stmts_deps =
haftmann@24155
   310
  let
haftmann@25101
   311
    val names = map (fst o fst) stmts_deps;
haftmann@25101
   312
    val names_deps = map (fn ((name, _), deps) => (name, deps)) stmts_deps;
haftmann@25101
   313
    val eqnss = maps (eqns_of_stmt o fst) stmts_deps;
haftmann@26064
   314
    val refl_deps = names_deps
haftmann@25190
   315
      |> maps snd
haftmann@25190
   316
      |> distinct (op =)
haftmann@26064
   317
      |> fold (insert (op =)) names;
haftmann@26064
   318
    fun new_node name (gr, (maxidx, idx_tab)) = if can (Graph.get_node gr) name
haftmann@26064
   319
      then (gr, (maxidx, idx_tab))
haftmann@26064
   320
      else (Graph.new_node (name, (NONE, maxidx)) gr,
haftmann@26064
   321
        (maxidx + 1, Inttab.update_new (maxidx, name) idx_tab));
haftmann@25190
   322
    fun compile gr = eqnss
wenzelm@28274
   323
      |> compile_eqnss ctxt gr refl_deps
haftmann@25190
   324
      |> rpair gr;
haftmann@25101
   325
  in
haftmann@26064
   326
    fold new_node refl_deps
haftmann@26064
   327
    #> apfst (fold (fn (name, deps) => fold (curry Graph.add_edge name) deps) names_deps
haftmann@26064
   328
      #> compile
haftmann@26064
   329
      #-> fold (fn (name, univ) => (Graph.map_node name o apfst) (K (SOME univ))))
haftmann@25101
   330
  end;
haftmann@25101
   331
haftmann@28706
   332
fun ensure_stmts ctxt naming program =
haftmann@25101
   333
  let
haftmann@26064
   334
    fun add_stmts names (gr, (maxidx, idx_tab)) = if exists ((can o Graph.get_node) gr) names
haftmann@26064
   335
      then (gr, (maxidx, idx_tab))
haftmann@26064
   336
      else (gr, (maxidx, idx_tab))
wenzelm@28274
   337
        |> compile_stmts ctxt (map (fn name => ((name, Graph.get_node program name),
haftmann@27103
   338
          Graph.imm_succs program name)) names);
haftmann@28706
   339
  in
haftmann@28706
   340
    fold_rev add_stmts (Graph.strong_conn program)
haftmann@28706
   341
    #> pair naming
haftmann@28706
   342
  end;
haftmann@25101
   343
haftmann@25944
   344
haftmann@25944
   345
(** evaluation **)
haftmann@25944
   346
haftmann@25944
   347
(* term evaluation *)
haftmann@25944
   348
haftmann@30947
   349
fun eval_term ctxt gr deps (vs : (string * sort) list, t) =
haftmann@25924
   350
  let 
haftmann@25924
   351
    val dict_frees = maps (fn (v, sort) => map_index (curry DFree v o fst) sort) vs;
haftmann@25924
   352
  in
haftmann@31064
   353
    ("", (vs, [([], t)]))
wenzelm@28274
   354
    |> singleton (compile_eqnss ctxt gr deps)
haftmann@25924
   355
    |> snd
haftmann@31064
   356
    |> (fn t => apps t (rev dict_frees))
haftmann@25924
   357
  end;
haftmann@24155
   358
haftmann@24839
   359
(* reification *)
haftmann@24155
   360
haftmann@30947
   361
fun typ_of_itype program vs (ityco `%% itys) =
haftmann@30947
   362
      let
haftmann@30947
   363
        val Code_Thingol.Datatype (tyco, _) = Graph.get_node program ityco;
haftmann@30947
   364
      in Type (tyco, map (typ_of_itype program vs) itys) end
haftmann@30947
   365
  | typ_of_itype program vs (ITyVar v) =
haftmann@30947
   366
      let
haftmann@30947
   367
        val sort = (the o AList.lookup (op =) vs) v;
haftmann@30947
   368
      in TFree ("'" ^ v, sort) end;
haftmann@30947
   369
haftmann@28663
   370
fun term_of_univ thy program idx_tab t =
haftmann@24155
   371
  let
haftmann@25101
   372
    fun take_until f [] = []
haftmann@25101
   373
      | take_until f (x::xs) = if f x then [] else x :: take_until f xs;
haftmann@28663
   374
    fun is_dict (Const (idx, _)) = (case (Graph.get_node program o the o Inttab.lookup idx_tab) idx
haftmann@28663
   375
         of Code_Thingol.Class _ => true
haftmann@28663
   376
          | Code_Thingol.Classrel _ => true
haftmann@28663
   377
          | Code_Thingol.Classinst _ => true
haftmann@28663
   378
          | _ => false)
haftmann@25101
   379
      | is_dict (DFree _) = true
haftmann@25101
   380
      | is_dict _ = false;
haftmann@28663
   381
    fun const_of_idx idx = (case (Graph.get_node program o the o Inttab.lookup idx_tab) idx
haftmann@28663
   382
         of Code_Thingol.Fun (c, _) => c
haftmann@28663
   383
          | Code_Thingol.Datatypecons (c, _) => c
haftmann@28663
   384
          | Code_Thingol.Classparam (c, _) => c);
haftmann@24155
   385
    fun of_apps bounds (t, ts) =
haftmann@24155
   386
      fold_map (of_univ bounds) ts
haftmann@24155
   387
      #>> (fn ts' => list_comb (t, rev ts'))
haftmann@26064
   388
    and of_univ bounds (Const (idx, ts)) typidx =
haftmann@24155
   389
          let
haftmann@25101
   390
            val ts' = take_until is_dict ts;
haftmann@28663
   391
            val c = const_of_idx idx;
haftmann@28423
   392
            val (_, T) = Code.default_typscheme thy c;
haftmann@29959
   393
            val T' = map_type_tfree (fn (v, _) => TypeInfer.param typidx (v, [])) T;
haftmann@29959
   394
            val typidx' = typidx + 1;
haftmann@25101
   395
          in of_apps bounds (Term.Const (c, T'), ts') typidx' end
haftmann@27499
   396
      | of_univ bounds (BVar (n, ts)) typidx =
haftmann@27499
   397
          of_apps bounds (Bound (bounds - n - 1), ts) typidx
haftmann@24155
   398
      | of_univ bounds (t as Abs _) typidx =
haftmann@24155
   399
          typidx
haftmann@25924
   400
          |> of_univ (bounds + 1) (apps t [BVar (bounds, [])])
haftmann@24155
   401
          |-> (fn t' => pair (Term.Abs ("u", dummyT, t')))
haftmann@24155
   402
  in of_univ 0 t 0 |> fst end;
haftmann@24155
   403
haftmann@25101
   404
(* function store *)
haftmann@25101
   405
haftmann@25101
   406
structure Nbe_Functions = CodeDataFun
haftmann@25101
   407
(
haftmann@28706
   408
  type T = Code_Thingol.naming * ((Univ option * int) Graph.T * (int * string Inttab.table));
haftmann@28706
   409
  val empty = (Code_Thingol.empty_naming, (Graph.empty, (0, Inttab.empty)));
haftmann@28706
   410
  fun purge thy cs (naming, (gr, (maxidx, idx_tab))) =
haftmann@27609
   411
    let
haftmann@28706
   412
      val names_delete = cs
haftmann@28706
   413
        |> map_filter (Code_Thingol.lookup_const naming)
haftmann@28706
   414
        |> filter (can (Graph.get_node gr))
haftmann@28706
   415
        |> Graph.all_preds gr;
haftmann@28706
   416
      val gr' = Graph.del_nodes names_delete gr;
haftmann@28706
   417
    in (naming, (gr', (maxidx, idx_tab))) end;
haftmann@25101
   418
);
haftmann@25101
   419
haftmann@25101
   420
(* compilation, evaluation and reification *)
haftmann@25101
   421
haftmann@30947
   422
fun compile_eval thy naming program vs_t deps =
haftmann@26064
   423
  let
wenzelm@28274
   424
    val ctxt = ProofContext.init thy;
haftmann@28706
   425
    val (_, (gr, (_, idx_tab))) =
haftmann@28706
   426
      Nbe_Functions.change thy (ensure_stmts ctxt naming program o snd);
haftmann@26064
   427
  in
haftmann@30947
   428
    vs_t
wenzelm@28274
   429
    |> eval_term ctxt gr deps
haftmann@28663
   430
    |> term_of_univ thy program idx_tab
haftmann@26064
   431
  end;
haftmann@25101
   432
haftmann@24155
   433
(* evaluation with type reconstruction *)
haftmann@24155
   434
haftmann@31064
   435
fun normalize thy naming program ((vs0, (vs, ty)), t) deps =
haftmann@24155
   436
  let
haftmann@26747
   437
    fun subst_const f = map_aterms (fn t as Term.Const (c, ty) => Term.Const (f c, ty)
haftmann@26747
   438
      | t => t);
haftmann@31156
   439
    val resubst_triv_consts = subst_const (Code.resubst_alias thy);
haftmann@30947
   440
    val ty' = typ_of_itype program vs0 ty;
wenzelm@27264
   441
    fun type_infer t =
wenzelm@27264
   442
      singleton (TypeInfer.infer_types (Syntax.pp_global thy) (Sign.tsig_of thy) I
wenzelm@27264
   443
        (try (Type.strip_sorts o Sign.the_const_type thy)) (K NONE) Name.context 0)
haftmann@30947
   444
      (TypeInfer.constrain ty' t);
wenzelm@29272
   445
    fun check_tvars t = if null (Term.add_tvars t []) then t else
haftmann@24155
   446
      error ("Illegal schematic type variables in normalized term: "
wenzelm@26952
   447
        ^ setmp show_types true (Syntax.string_of_term_global thy) t);
wenzelm@26952
   448
    val string_of_term = setmp show_types true (Syntax.string_of_term_global thy);
haftmann@24155
   449
  in
haftmann@30947
   450
    compile_eval thy naming program (vs, t) deps
haftmann@25167
   451
    |> tracing (fn t => "Normalized:\n" ^ string_of_term t)
haftmann@30947
   452
    |> resubst_triv_consts
haftmann@26739
   453
    |> type_infer
haftmann@25167
   454
    |> tracing (fn t => "Types inferred:\n" ^ string_of_term t)
haftmann@26739
   455
    |> check_tvars
haftmann@25101
   456
    |> tracing (fn t => "---\n")
haftmann@24155
   457
  end;
haftmann@24155
   458
haftmann@24155
   459
(* evaluation oracle *)
haftmann@24155
   460
haftmann@30947
   461
fun add_triv_classes thy = curry (Sorts.inter_sort (Sign.classes_of thy))
haftmann@31156
   462
  (Code.triv_classes thy);
haftmann@30947
   463
haftmann@30947
   464
fun mk_equals thy lhs raw_rhs =
haftmann@26747
   465
  let
haftmann@30947
   466
    val ty = Thm.typ_of (Thm.ctyp_of_term lhs);
haftmann@30947
   467
    val eq = Thm.cterm_of thy (Term.Const ("==", ty --> ty --> propT));
haftmann@30947
   468
    val rhs = Thm.cterm_of thy raw_rhs;
haftmann@30947
   469
  in Thm.mk_binop eq lhs rhs end;
haftmann@26747
   470
haftmann@30942
   471
val (_, raw_norm_oracle) = Context.>>> (Context.map_theory_result
haftmann@31064
   472
  (Thm.add_oracle (Binding.name "norm", fn (thy, naming, program, vsp_ty_t, deps, ct) =>
haftmann@31064
   473
    mk_equals thy ct (normalize thy naming program vsp_ty_t deps))));
haftmann@30942
   474
haftmann@31064
   475
fun norm_oracle thy naming program vsp_ty_t deps ct =
haftmann@31064
   476
  raw_norm_oracle (thy, naming, program, vsp_ty_t, deps, ct);
haftmann@30942
   477
haftmann@31064
   478
fun no_frees_conv conv ct =
haftmann@31064
   479
  let
haftmann@31064
   480
    val frees = Thm.add_cterm_frees ct [];
haftmann@31064
   481
    fun apply_beta free thm = Thm.combination thm (Thm.reflexive free)
haftmann@31064
   482
      |> Conv.fconv_rule (Conv.arg_conv (Conv.try_conv (Thm.beta_conversion false)))
haftmann@31064
   483
      |> Conv.fconv_rule (Conv.arg1_conv (Thm.beta_conversion false));
haftmann@31064
   484
  in
haftmann@31064
   485
    ct
haftmann@31064
   486
    |> fold_rev Thm.cabs frees
haftmann@31064
   487
    |> conv
haftmann@31064
   488
    |> fold apply_beta frees
haftmann@31064
   489
  end;
haftmann@31064
   490
haftmann@31064
   491
fun no_frees_rew rew t =
haftmann@31064
   492
  let
haftmann@31064
   493
    val frees = map Free (Term.add_frees t []);
haftmann@31064
   494
  in
haftmann@31064
   495
    t
haftmann@31064
   496
    |> fold_rev lambda frees
haftmann@31064
   497
    |> rew
haftmann@31064
   498
    |> (fn t' => Term.betapplys (t', frees))
haftmann@31064
   499
  end;
haftmann@31064
   500
haftmann@31064
   501
val norm_conv = no_frees_conv (fn ct =>
haftmann@24155
   502
  let
haftmann@24155
   503
    val thy = Thm.theory_of_cterm ct;
haftmann@31064
   504
  in Code_Thingol.eval_conv thy (add_triv_classes thy) (norm_oracle thy) ct end);
haftmann@24155
   505
haftmann@31064
   506
fun norm thy = no_frees_rew (Code_Thingol.eval thy (add_triv_classes thy) I (normalize thy));
haftmann@24839
   507
haftmann@24155
   508
(* evaluation command *)
haftmann@24155
   509
haftmann@24155
   510
fun norm_print_term ctxt modes t =
haftmann@24155
   511
  let
haftmann@24155
   512
    val thy = ProofContext.theory_of ctxt;
haftmann@30970
   513
    val t' = norm thy t;
haftmann@24839
   514
    val ty' = Term.type_of t';
wenzelm@26952
   515
    val ctxt' = Variable.auto_fixes t ctxt;
wenzelm@24634
   516
    val p = PrintMode.with_modes modes (fn () =>
wenzelm@26952
   517
      Pretty.block [Pretty.quote (Syntax.pretty_term ctxt' t'), Pretty.fbrk,
wenzelm@26952
   518
        Pretty.str "::", Pretty.brk 1, Pretty.quote (Syntax.pretty_typ ctxt' ty')]) ();
haftmann@24155
   519
  in Pretty.writeln p end;
haftmann@24155
   520
haftmann@24155
   521
haftmann@24155
   522
(** Isar setup **)
haftmann@24155
   523
wenzelm@24508
   524
fun norm_print_term_cmd (modes, s) state =
haftmann@24155
   525
  let val ctxt = Toplevel.context_of state
wenzelm@24508
   526
  in norm_print_term ctxt modes (Syntax.read_term ctxt s) end;
haftmann@24155
   527
haftmann@30970
   528
val setup = Value.add_evaluator ("nbe", norm o ProofContext.theory_of);
haftmann@24155
   529
haftmann@24155
   530
local structure P = OuterParse and K = OuterKeyword in
haftmann@24155
   531
haftmann@24155
   532
val opt_modes = Scan.optional (P.$$$ "(" |-- P.!!! (Scan.repeat1 P.xname --| P.$$$ ")")) [];
haftmann@24155
   533
wenzelm@24867
   534
val _ =
haftmann@24155
   535
  OuterSyntax.improper_command "normal_form" "normalize term by evaluation" K.diag
haftmann@28227
   536
    (opt_modes -- P.term >> (Toplevel.keep o norm_print_term_cmd));
haftmann@24155
   537
haftmann@24155
   538
end;
haftmann@24155
   539
haftmann@24155
   540
end;
haftmann@28337
   541