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