src/Tools/nbe.ML
author wenzelm
Sat, 07 Apr 2012 16:41:59 +0200
changeset 47389 e8552cba702d
parent 44789 5a062c23c7db
child 47572 1e18bbfb40cb
permissions -rw-r--r--
explicit checks stable_finished_theory/stable_command allow parallel asynchronous command transactions; tuned;
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
41247
c5cb19ecbd41 avoid slightly odd Conv.tap_thy
haftmann
parents: 41184
diff changeset
     9
  val dynamic_conv: theory -> conv
41184
5c6f44d22f51 simplified evaluation function names
haftmann
parents: 41118
diff changeset
    10
  val dynamic_value: theory -> term -> term
5c6f44d22f51 simplified evaluation function names
haftmann
parents: 41118
diff changeset
    11
  val static_conv: theory -> string list -> conv
5c6f44d22f51 simplified evaluation function names
haftmann
parents: 41118
diff changeset
    12
  val static_value: theory -> string list -> term -> term
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
    13
25204
36cf92f63a44 replaced Secure.evaluate by ML_Context.evaluate;
wenzelm
parents: 25190
diff changeset
    14
  datatype Univ =
26064
65585de05a66 using integers for pattern matching
haftmann
parents: 26011
diff changeset
    15
      Const of int * Univ list               (*named (uninterpreted) constants*)
25924
f974a1c64348 improved implementation
haftmann
parents: 25865
diff changeset
    16
    | DFree of string * int                  (*free (uninterpreted) dictionary parameters*)
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
    17
    | BVar of int * Univ list
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
    18
    | Abs of (int * (Univ list -> Univ)) * Univ list
25924
f974a1c64348 improved implementation
haftmann
parents: 25865
diff changeset
    19
  val apps: Univ -> Univ list -> Univ        (*explicit applications*)
25944
haftmann
parents: 25935
diff changeset
    20
  val abss: int -> (Univ list -> Univ) -> Univ
28337
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
    21
                                             (*abstractions as closures*)
41037
6d6f23b3a879 removed experimental equality checking of closures; acknowledge underapproximation of equality in function name
haftmann
parents: 40730
diff changeset
    22
  val same: Univ * Univ -> bool
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
    23
39388
fdbb2c55ffc2 replaced ML_Context.evaluate by ML_Context.value -- using context data instead of bare metal references
haftmann
parents: 39290
diff changeset
    24
  val put_result: (unit -> Univ list -> Univ list) -> Proof.context -> Proof.context
32740
9dd0a2f83429 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32544
diff changeset
    25
  val trace: bool Unsynchronized.ref
25924
f974a1c64348 improved implementation
haftmann
parents: 25865
diff changeset
    26
26747
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26739
diff changeset
    27
  val setup: theory -> theory
32544
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    28
  val add_const_alias: thm -> theory -> theory
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
    29
end;
d86867645f4f nbe improved
haftmann
parents:
diff changeset
    30
d86867645f4f nbe improved
haftmann
parents:
diff changeset
    31
structure Nbe: NBE =
d86867645f4f nbe improved
haftmann
parents:
diff changeset
    32
struct
d86867645f4f nbe improved
haftmann
parents:
diff changeset
    33
d86867645f4f nbe improved
haftmann
parents:
diff changeset
    34
(* generic non-sense *)
d86867645f4f nbe improved
haftmann
parents:
diff changeset
    35
32740
9dd0a2f83429 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32544
diff changeset
    36
val trace = Unsynchronized.ref false;
32544
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    37
fun traced f x = if !trace then (tracing (f x); x) else x;
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
    38
d86867645f4f nbe improved
haftmann
parents:
diff changeset
    39
32544
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    40
(** certificates and oracle for "trivial type classes" **)
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    41
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33002
diff changeset
    42
structure Triv_Class_Data = Theory_Data
32544
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    43
(
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    44
  type T = (class * thm) list;
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    45
  val empty = [];
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    46
  val extend = I;
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33002
diff changeset
    47
  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
    48
);
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    49
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    50
fun add_const_alias thm thy =
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    51
  let
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    52
    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
    53
     of SOME ofclass_eq => ofclass_eq
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    54
      | _ => error ("Bad certificate: " ^ Display.string_of_thm_global thy thm);
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    55
    val (T, class) = case try Logic.dest_of_class ofclass
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    56
     of SOME T_class => T_class
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    57
      | _ => error ("Bad certificate: " ^ Display.string_of_thm_global thy thm);
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    58
    val tvar = case try Term.dest_TVar T
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    59
     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
    60
          then tvar
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    61
          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
    62
      | _ => error ("Bad type: " ^ Display.string_of_thm_global thy thm);
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    63
    val _ = if Term.add_tvars eqn [] = [tvar] then ()
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    64
      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
    65
    val lhs_rhs = case try Logic.dest_equals eqn
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    66
     of SOME lhs_rhs => lhs_rhs
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    67
      | _ => error ("Not an equation: " ^ Syntax.string_of_term_global thy eqn);
40362
82a066bff182 Code.check_const etc.: reject too specific types
haftmann
parents: 39911
diff changeset
    68
    val c_c' = case try (pairself (AxClass.unoverload_const thy o dest_Const)) lhs_rhs
32544
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    69
     of SOME c_c' => c_c'
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    70
      | _ => error ("Not an equation with two constants: "
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    71
          ^ Syntax.string_of_term_global thy eqn);
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    72
    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
    73
      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
    74
  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
    75
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    76
local
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 get_triv_classes = map fst o Triv_Class_Data.get;
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    79
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    80
val (_, triv_of_class) = Context.>>> (Context.map_theory_result
43619
3803869014aa proper @{binding} antiquotations (relevant for formal references);
wenzelm
parents: 43329
diff changeset
    81
  (Thm.add_oracle (@{binding triv_of_class}, fn (thy, T, class) =>
32544
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    82
    Thm.cterm_of thy (Logic.mk_of_class (T, class)))));
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
in
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    85
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    86
fun lift_triv_classes_conv thy conv ct =
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    87
  let
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    88
    val algebra = Sign.classes_of thy;
36982
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
    89
    val certT = Thm.ctyp_of thy;
32544
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
    90
    val triv_classes = get_triv_classes thy;
36982
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
    91
    fun additional_classes sort = filter_out (fn class => Sorts.sort_le algebra (sort, [class])) triv_classes;
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
    92
    fun mk_entry (v, sort) =
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
    93
      let
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
    94
        val T = TFree (v, sort);
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
    95
        val cT = certT T;
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
    96
        val triv_sort = additional_classes sort;
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
    97
      in
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
    98
        (v, (Sorts.inter_sort algebra (sort, triv_sort),
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
    99
          (cT, AList.make (fn class => Thm.of_class (cT, class)) sort
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   100
            @ AList.make (fn class => triv_of_class (thy, T, class)) triv_sort)))
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   101
      end;
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   102
    val vs_tab = map mk_entry (Term.add_tfrees (Thm.term_of ct) []);
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   103
    fun instantiate thm =
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   104
      let
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   105
        val cert_tvars = map (certT o TVar) (Term.add_tvars
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   106
          ((fst o Logic.dest_equals o Logic.strip_imp_concl o Thm.prop_of) thm) []);
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   107
        val instantiation =
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   108
          map2 (fn cert_tvar => fn (_, (_, (cT, _))) => (cert_tvar, cT)) cert_tvars vs_tab;
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   109
      in Thm.instantiate (instantiation, []) thm end;
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   110
    fun of_class (TFree (v, _), class) =
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   111
          the (AList.lookup (op =) ((snd o snd o the o AList.lookup (op =) vs_tab) v) class)
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   112
      | of_class (T, _) = error ("Bad type " ^ Syntax.string_of_typ_global thy T);
32544
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   113
    fun strip_of_class thm =
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   114
      let
36982
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   115
        val prems_of_class = Thm.prop_of thm
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   116
          |> Logic.strip_imp_prems
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   117
          |> map (Logic.dest_of_class #> of_class);
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   118
      in fold Thm.elim_implies prems_of_class thm end;
36770
c3a04614c710 reactivated Thm.legacy_unconstrainT for Nbe.lift_triv_classes_conv;
wenzelm
parents: 36768
diff changeset
   119
  in
c3a04614c710 reactivated Thm.legacy_unconstrainT for Nbe.lift_triv_classes_conv;
wenzelm
parents: 36768
diff changeset
   120
    ct
36982
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   121
    |> (Drule.cterm_fun o map_types o map_type_tfree)
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   122
        (fn (v, sort) => TFree (v, (fst o the o AList.lookup (op =) vs_tab) v))
32544
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   123
    |> conv
36982
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   124
    |> Thm.strip_shyps
35845
e5980f0ad025 renamed varify/unvarify operations to varify_global/unvarify_global to emphasize that these only work in a global situation;
wenzelm
parents: 35500
diff changeset
   125
    |> Thm.varifyT_global
36982
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   126
    |> Thm.unconstrainT
1d4478a797c2 new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents: 36960
diff changeset
   127
    |> instantiate
32544
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   128
    |> strip_of_class
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
fun lift_triv_classes_rew thy rew t =
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   132
  let
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   133
    val algebra = Sign.classes_of thy;
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   134
    val triv_classes = get_triv_classes thy;
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   135
    val vs = Term.add_tfrees t [];
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   136
  in t
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   137
    |> (map_types o map_type_tfree)
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   138
        (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
   139
    |> rew
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   140
    |> (map_types o map_type_tfree)
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   141
        (fn (v, _) => TFree (v, the (AList.lookup (op =) vs v)))
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   142
  end;
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   143
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   144
end;
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   145
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   146
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   147
(** the semantic universe **)
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   148
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   149
(*
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   150
   Functions are given by their semantical function value. To avoid
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   151
   trouble with the ML-type system, these functions have the most
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   152
   generic type, that is "Univ list -> Univ". The calling convention is
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   153
   that the arguments come as a list, the last argument first. In
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   154
   other words, a function call that usually would look like
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   156
   f x_1 x_2 ... x_n   or   f(x_1,x_2, ..., x_n)
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   157
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   158
   would be in our convention called as
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   159
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   160
              f [x_n,..,x_2,x_1]
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   161
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   162
   Moreover, to handle functions that are still waiting for some
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   163
   arguments we have additionally a list of arguments collected to far
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   164
   and the number of arguments we're still waiting for.
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   165
*)
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   166
25204
36cf92f63a44 replaced Secure.evaluate by ML_Context.evaluate;
wenzelm
parents: 25190
diff changeset
   167
datatype Univ =
26064
65585de05a66 using integers for pattern matching
haftmann
parents: 26011
diff changeset
   168
    Const of int * Univ list           (*named (uninterpreted) constants*)
25924
f974a1c64348 improved implementation
haftmann
parents: 25865
diff changeset
   169
  | DFree of string * int              (*free (uninterpreted) dictionary parameters*)
27499
150558266831 clarified code
haftmann
parents: 27264
diff changeset
   170
  | BVar of int * Univ list            (*bound variables, named*)
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   171
  | Abs of (int * (Univ list -> Univ)) * Univ list
27499
150558266831 clarified code
haftmann
parents: 27264
diff changeset
   172
                                       (*abstractions as closures*);
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   173
35371
6c92eb394e3c tuned whitespace
haftmann
parents: 34251
diff changeset
   174
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   175
(* constructor functions *)
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   176
25944
haftmann
parents: 25935
diff changeset
   177
fun abss n f = Abs ((n, f), []);
25924
f974a1c64348 improved implementation
haftmann
parents: 25865
diff changeset
   178
fun apps (Abs ((n, f), xs)) ys = let val k = n - length ys in
27499
150558266831 clarified code
haftmann
parents: 27264
diff changeset
   179
      case int_ord (k, 0)
150558266831 clarified code
haftmann
parents: 27264
diff changeset
   180
       of EQUAL => f (ys @ xs)
150558266831 clarified code
haftmann
parents: 27264
diff changeset
   181
        | LESS => let val (zs, ws) = chop (~ k) ys in apps (f (ws @ xs)) zs end
150558266831 clarified code
haftmann
parents: 27264
diff changeset
   182
        | GREATER => Abs ((k, f), ys @ xs) (*note: reverse convention also for apps!*)
150558266831 clarified code
haftmann
parents: 27264
diff changeset
   183
      end
25924
f974a1c64348 improved implementation
haftmann
parents: 25865
diff changeset
   184
  | apps (Const (name, xs)) ys = Const (name, ys @ xs)
27499
150558266831 clarified code
haftmann
parents: 27264
diff changeset
   185
  | apps (BVar (n, xs)) ys = BVar (n, ys @ xs);
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   186
41037
6d6f23b3a879 removed experimental equality checking of closures; acknowledge underapproximation of equality in function name
haftmann
parents: 40730
diff changeset
   187
fun same (Const (k, xs), Const (l, ys)) = k = l andalso eq_list same (xs, ys)
6d6f23b3a879 removed experimental equality checking of closures; acknowledge underapproximation of equality in function name
haftmann
parents: 40730
diff changeset
   188
  | same (DFree (s, k), DFree (t, l)) = s = t andalso k = l
6d6f23b3a879 removed experimental equality checking of closures; acknowledge underapproximation of equality in function name
haftmann
parents: 40730
diff changeset
   189
  | same (BVar (k, xs), BVar (l, ys)) = k = l andalso eq_list same (xs, ys)
6d6f23b3a879 removed experimental equality checking of closures; acknowledge underapproximation of equality in function name
haftmann
parents: 40730
diff changeset
   190
  | same _ = false;
40730
2aa0390a2da7 nbe decides equality of abstractions by extensionality
haftmann
parents: 40564
diff changeset
   191
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   192
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   193
(** assembling and compiling ML code from terms **)
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   194
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   195
(* abstract ML syntax *)
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   196
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   197
infix 9 `$` `$$`;
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   198
fun e1 `$` e2 = "(" ^ e1 ^ " " ^ e2 ^ ")";
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   199
fun e `$$` [] = e
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   200
  | e `$$` es = "(" ^ e ^ " " ^ space_implode " " es ^ ")";
24590
733120d04233 delayed evaluation
haftmann
parents: 24508
diff changeset
   201
fun ml_abs v e = "(fn " ^ v ^ " => " ^ e ^ ")";
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   202
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   203
fun ml_cases t cs =
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   204
  "(case " ^ t ^ " of " ^ space_implode " | " (map (fn (p, t) => p ^ " => " ^ t) cs) ^ ")";
25944
haftmann
parents: 25935
diff changeset
   205
fun ml_Let d e = "let\n" ^ d ^ " in " ^ e ^ " end";
28337
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   206
fun ml_as v t = "(" ^ v ^ " as " ^ t ^ ")";
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   207
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   208
fun ml_and [] = "true"
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   209
  | ml_and [x] = x
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   210
  | ml_and xs = "(" ^ space_implode " andalso " xs ^ ")";
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   211
fun ml_if b x y = "(if " ^ b ^ " then " ^ x ^ " else " ^ y ^ ")";
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   212
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   213
fun ml_list es = "[" ^ commas es ^ "]";
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   214
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   215
fun ml_fundefs ([(name, [([], e)])]) =
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   216
      "val " ^ name ^ " = " ^ e ^ "\n"
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   217
  | ml_fundefs (eqs :: eqss) =
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   218
      let
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   219
        fun fundef (name, eqs) =
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   220
          let
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   221
            fun eqn (es, e) = name ^ " " ^ space_implode " " es ^ " = " ^ e
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   222
          in space_implode "\n  | " (map eqn eqs) end;
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   223
      in
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   224
        (prefix "fun " o fundef) eqs :: map (prefix "and " o fundef) eqss
26931
aa226d8405a8 cat_lines;
wenzelm
parents: 26747
diff changeset
   225
        |> cat_lines
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   226
        |> suffix "\n"
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   227
      end;
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   228
35371
6c92eb394e3c tuned whitespace
haftmann
parents: 34251
diff changeset
   229
25944
haftmann
parents: 25935
diff changeset
   230
(* nbe specific syntax and sandbox communication *)
haftmann
parents: 25935
diff changeset
   231
41472
f6ab14e61604 misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
wenzelm
parents: 41346
diff changeset
   232
structure Univs = Proof_Data
f6ab14e61604 misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
wenzelm
parents: 41346
diff changeset
   233
(
39388
fdbb2c55ffc2 replaced ML_Context.evaluate by ML_Context.value -- using context data instead of bare metal references
haftmann
parents: 39290
diff changeset
   234
  type T = unit -> Univ list -> Univ list
41472
f6ab14e61604 misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
wenzelm
parents: 41346
diff changeset
   235
  (* FIXME avoid user error with non-user text *)
39399
267235a14938 static nbe conversion
haftmann
parents: 39396
diff changeset
   236
  fun init _ () = error "Univs"
39388
fdbb2c55ffc2 replaced ML_Context.evaluate by ML_Context.value -- using context data instead of bare metal references
haftmann
parents: 39290
diff changeset
   237
);
fdbb2c55ffc2 replaced ML_Context.evaluate by ML_Context.value -- using context data instead of bare metal references
haftmann
parents: 39290
diff changeset
   238
val put_result = Univs.put;
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   239
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   240
local
41068
7e643e07be7f tuned whitespace
haftmann
parents: 41037
diff changeset
   241
  val prefix =     "Nbe.";
7e643e07be7f tuned whitespace
haftmann
parents: 41037
diff changeset
   242
  val name_put =   prefix ^ "put_result";
7e643e07be7f tuned whitespace
haftmann
parents: 41037
diff changeset
   243
  val name_ref =   prefix ^ "univs_ref";
7e643e07be7f tuned whitespace
haftmann
parents: 41037
diff changeset
   244
  val name_const = prefix ^ "Const";
7e643e07be7f tuned whitespace
haftmann
parents: 41037
diff changeset
   245
  val name_abss =  prefix ^ "abss";
7e643e07be7f tuned whitespace
haftmann
parents: 41037
diff changeset
   246
  val name_apps =  prefix ^ "apps";
7e643e07be7f tuned whitespace
haftmann
parents: 41037
diff changeset
   247
  val name_same =  prefix ^ "same";
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   248
in
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   249
39388
fdbb2c55ffc2 replaced ML_Context.evaluate by ML_Context.value -- using context data instead of bare metal references
haftmann
parents: 39290
diff changeset
   250
val univs_cookie = (Univs.get, put_result, name_put);
25944
haftmann
parents: 25935
diff changeset
   251
28337
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   252
fun nbe_fun 0 "" = "nbe_value"
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   253
  | 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
   254
fun nbe_dict v n = "d_" ^ v ^ "_" ^ string_of_int n;
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   255
fun nbe_bound v = "v_" ^ v;
31888
626c075fd457 variable names in abstractions are optional
haftmann
parents: 31724
diff changeset
   256
fun nbe_bound_optional NONE = "_"
35500
118cda173627 dropped superfluous naming
haftmann
parents: 35371
diff changeset
   257
  | nbe_bound_optional (SOME v) = nbe_bound v;
28337
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   258
fun nbe_default v = "w_" ^ v;
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   259
25924
f974a1c64348 improved implementation
haftmann
parents: 25865
diff changeset
   260
(*note: these three are the "turning spots" where proper argument order is established!*)
f974a1c64348 improved implementation
haftmann
parents: 25865
diff changeset
   261
fun nbe_apps t [] = t
f974a1c64348 improved implementation
haftmann
parents: 25865
diff changeset
   262
  | nbe_apps t ts = name_apps `$$` [t, ml_list (rev ts)];
28337
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   263
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
   264
fun nbe_apps_constr idx_of c ts =
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   265
  let
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   266
    val c' = if !trace then string_of_int (idx_of c) ^ " (*" ^ c ^ "*)"
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   267
      else string_of_int (idx_of c);
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   268
  in name_const `$` ("(" ^ c' ^ ", " ^ ml_list (rev ts) ^ ")") end;
25924
f974a1c64348 improved implementation
haftmann
parents: 25865
diff changeset
   269
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   270
fun nbe_abss 0 f = f `$` ml_list []
25944
haftmann
parents: 25935
diff changeset
   271
  | nbe_abss n f = name_abss `$$` [string_of_int n, f];
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   272
41037
6d6f23b3a879 removed experimental equality checking of closures; acknowledge underapproximation of equality in function name
haftmann
parents: 40730
diff changeset
   273
fun nbe_same (v1, v2) = "(" ^ name_same ^ " (" ^ nbe_bound v1 ^ ", " ^ nbe_bound v2 ^ "))";
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   274
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   275
end;
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   276
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27609
diff changeset
   277
open Basic_Code_Thingol;
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   278
35371
6c92eb394e3c tuned whitespace
haftmann
parents: 34251
diff changeset
   279
25865
a141d6bfd398 tuned comment
haftmann
parents: 25204
diff changeset
   280
(* code generation *)
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   281
26064
65585de05a66 using integers for pattern matching
haftmann
parents: 26011
diff changeset
   282
fun assemble_eqnss idx_of deps eqnss =
25944
haftmann
parents: 25935
diff changeset
   283
  let
haftmann
parents: 25935
diff changeset
   284
    fun prep_eqns (c, (vs, eqns)) =
25924
f974a1c64348 improved implementation
haftmann
parents: 25865
diff changeset
   285
      let
25944
haftmann
parents: 25935
diff changeset
   286
        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
   287
        val num_args = length dicts + ((length o fst o hd) eqns);
25944
haftmann
parents: 25935
diff changeset
   288
      in (c, (num_args, (dicts, eqns))) end;
haftmann
parents: 25935
diff changeset
   289
    val eqnss' = map prep_eqns eqnss;
haftmann
parents: 25935
diff changeset
   290
haftmann
parents: 25935
diff changeset
   291
    fun assemble_constapp c dss ts = 
haftmann
parents: 25935
diff changeset
   292
      let
41118
b290841cd3b0 separated dictionary weakning into separate type
haftmann
parents: 41100
diff changeset
   293
        val ts' = (maps o map) assemble_dict dss @ ts;
25944
haftmann
parents: 25935
diff changeset
   294
      in case AList.lookup (op =) eqnss' c
28337
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   295
       of SOME (num_args, _) => if num_args <= length ts'
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   296
            then let val (ts1, ts2) = chop num_args ts'
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   297
            in nbe_apps (nbe_apps_local 0 c ts1) ts2
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   298
            end else nbe_apps (nbe_abss num_args (nbe_fun 0 c)) ts'
25944
haftmann
parents: 25935
diff changeset
   299
        | NONE => if member (op =) deps c
28337
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   300
            then nbe_apps (nbe_fun 0 c) ts'
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   301
            else nbe_apps_constr idx_of c ts'
25924
f974a1c64348 improved implementation
haftmann
parents: 25865
diff changeset
   302
      end
41100
6c0940392fb4 dictionary constants must permit explicit weakening of classes;
haftmann
parents: 41068
diff changeset
   303
    and assemble_classrels classrels =
6c0940392fb4 dictionary constants must permit explicit weakening of classes;
haftmann
parents: 41068
diff changeset
   304
      fold_rev (fn classrel => assemble_constapp classrel [] o single) classrels
41118
b290841cd3b0 separated dictionary weakning into separate type
haftmann
parents: 41100
diff changeset
   305
    and assemble_dict (Dict (classrels, x)) =
b290841cd3b0 separated dictionary weakning into separate type
haftmann
parents: 41100
diff changeset
   306
          assemble_classrels classrels (assemble_plain_dict x)
b290841cd3b0 separated dictionary weakning into separate type
haftmann
parents: 41100
diff changeset
   307
    and assemble_plain_dict (Dict_Const (inst, dss)) =
b290841cd3b0 separated dictionary weakning into separate type
haftmann
parents: 41100
diff changeset
   308
          assemble_constapp inst dss []
b290841cd3b0 separated dictionary weakning into separate type
haftmann
parents: 41100
diff changeset
   309
      | assemble_plain_dict (Dict_Var (v, (n, _))) =
b290841cd3b0 separated dictionary weakning into separate type
haftmann
parents: 41100
diff changeset
   310
          nbe_dict v n
25924
f974a1c64348 improved implementation
haftmann
parents: 25865
diff changeset
   311
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   312
    fun assemble_iterm constapp =
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   313
      let
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   314
        fun of_iterm match_cont t =
25944
haftmann
parents: 25935
diff changeset
   315
          let
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27609
diff changeset
   316
            val (t', ts) = Code_Thingol.unfold_app t
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   317
          in of_iapp match_cont t' (fold_rev (cons o of_iterm NONE) ts []) end
44788
8b935f1b3cf8 changing const type to pass along if typing annotations are necessary for disambigous terms
bulwahn
parents: 44338
diff changeset
   318
        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
   319
          | 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
   320
          | of_iapp match_cont ((v, _) `|=> t) ts =
31888
626c075fd457 variable names in abstractions are optional
haftmann
parents: 31724
diff changeset
   321
              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
   322
          | of_iapp match_cont (ICase (((t, _), cs), t0)) ts =
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   323
              nbe_apps (ml_cases (of_iterm NONE t)
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   324
                (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
   325
                  @ [("_", case match_cont of SOME s => s | NONE => of_iterm NONE t0)])) ts
25944
haftmann
parents: 25935
diff changeset
   326
      in of_iterm end;
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   327
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   328
    fun subst_nonlin_vars args =
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   329
      let
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   330
        val vs = (fold o Code_Thingol.fold_varnames)
33002
f3f02f36a3e2 uniform use of Integer.add/mult/sum/prod;
wenzelm
parents: 32966
diff changeset
   331
          (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
   332
        val names = Name.make_context (map fst vs);
43329
84472e198515 tuned signature: Name.invent and Name.invent_names;
wenzelm
parents: 43323
diff changeset
   333
        fun declare v k ctxt =
84472e198515 tuned signature: Name.invent and Name.invent_names;
wenzelm
parents: 43323
diff changeset
   334
          let val vs = Name.invent ctxt v k
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   335
          in (vs, fold Name.declare vs ctxt) end;
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   336
        val (vs_renames, _) = fold_map (fn (v, k) => if k > 1
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   337
          then declare v (k - 1) #>> (fn vs => (v, vs))
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   338
          else pair (v, [])) vs names;
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   339
        val samepairs = maps (fn (v, vs) => map (pair v) vs) vs_renames;
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   340
        fun subst_vars (t as IConst _) samepairs = (t, samepairs)
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
   341
          | subst_vars (t as IVar NONE) samepairs = (t, samepairs)
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
   342
          | 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
   343
             of SOME v' => (IVar (SOME v'), AList.delete (op =) v samepairs)
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   344
              | NONE => (t, samepairs))
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   345
          | subst_vars (t1 `$ t2) samepairs = samepairs
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   346
              |> subst_vars t1
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   347
              ||>> subst_vars t2
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   348
              |>> (op `$)
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   349
          | subst_vars (ICase (_, t)) samepairs = subst_vars t samepairs;
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   350
        val (args', _) = fold_map subst_vars args samepairs;
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   351
      in (samepairs, args') end;
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   352
28337
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   353
    fun assemble_eqn c dicts default_args (i, (args, rhs)) =
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   354
      let
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   355
        val is_eval = (c = "");
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   356
        val default_rhs = nbe_apps_local (i+1) c (dicts @ default_args);
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   357
        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
   358
        val assemble_arg = assemble_iterm
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   359
          (fn c => fn _ => fn ts => nbe_apps_constr idx_of c ts) NONE;
35371
6c92eb394e3c tuned whitespace
haftmann
parents: 34251
diff changeset
   360
        val assemble_rhs = assemble_iterm assemble_constapp match_cont;
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   361
        val (samepairs, args') = subst_nonlin_vars args;
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   362
        val s_args = map assemble_arg args';
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   363
        val s_rhs = if null samepairs then assemble_rhs rhs
41037
6d6f23b3a879 removed experimental equality checking of closures; acknowledge underapproximation of equality in function name
haftmann
parents: 40730
diff changeset
   364
          else ml_if (ml_and (map nbe_same samepairs))
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   365
            (assemble_rhs rhs) default_rhs;
28337
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   366
        val eqns = if is_eval then
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   367
            [([ml_list (rev (dicts @ s_args))], s_rhs)]
28337
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   368
          else
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28337
diff changeset
   369
            [([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
   370
              ([ml_list (rev (dicts @ default_args))], default_rhs)]
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   371
      in (nbe_fun i c, eqns) end;
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   372
25944
haftmann
parents: 25935
diff changeset
   373
    fun assemble_eqns (c, (num_args, (dicts, eqns))) =
haftmann
parents: 25935
diff changeset
   374
      let
28337
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   375
        val default_args = map nbe_default
43329
84472e198515 tuned signature: Name.invent and Name.invent_names;
wenzelm
parents: 43323
diff changeset
   376
          (Name.invent Name.context "a" (num_args - length dicts));
28337
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   377
        val eqns' = map_index (assemble_eqn c dicts default_args) eqns
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   378
          @ (if c = "" then [] else [(nbe_fun (length eqns) c,
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   379
            [([ml_list (rev (dicts @ default_args))],
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   380
              nbe_apps_constr idx_of c (dicts @ default_args))])]);
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   381
      in (eqns', nbe_abss num_args (nbe_fun 0 c)) end;
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   382
25944
haftmann
parents: 25935
diff changeset
   383
    val (fun_vars, fun_vals) = map_split assemble_eqns eqnss';
28337
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   384
    val deps_vars = ml_list (map (nbe_fun 0) deps);
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   385
  in ml_abs deps_vars (ml_Let (ml_fundefs (flat fun_vars)) (ml_list fun_vals)) end;
25944
haftmann
parents: 25935
diff changeset
   386
35371
6c92eb394e3c tuned whitespace
haftmann
parents: 34251
diff changeset
   387
39392
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   388
(* compile equations *)
25944
haftmann
parents: 25935
diff changeset
   389
39392
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   390
fun compile_eqnss thy nbe_program raw_deps [] = []
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   391
  | compile_eqnss thy nbe_program raw_deps eqnss =
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   392
      let
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 41472
diff changeset
   393
        val ctxt = Proof_Context.init_global thy;
26064
65585de05a66 using integers for pattern matching
haftmann
parents: 26011
diff changeset
   394
        val (deps, deps_vals) = split_list (map_filter
39392
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   395
          (fn dep => Option.map (fn univ => (dep, univ)) (fst ((Graph.get_node nbe_program dep)))) raw_deps);
26064
65585de05a66 using integers for pattern matching
haftmann
parents: 26011
diff changeset
   396
        val idx_of = raw_deps
39392
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   397
          |> map (fn dep => (dep, snd (Graph.get_node nbe_program dep)))
26064
65585de05a66 using integers for pattern matching
haftmann
parents: 26011
diff changeset
   398
          |> AList.lookup (op =)
65585de05a66 using integers for pattern matching
haftmann
parents: 26011
diff changeset
   399
          |> (fn f => the o f);
65585de05a66 using integers for pattern matching
haftmann
parents: 26011
diff changeset
   400
        val s = assemble_eqnss idx_of deps eqnss;
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   401
        val cs = map fst eqnss;
25944
haftmann
parents: 25935
diff changeset
   402
      in
haftmann
parents: 25935
diff changeset
   403
        s
32544
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   404
        |> traced (fn s => "\n--- code to be evaluated:\n" ^ s)
38931
5e84c11c4b8a evaluate takes ml context and ml expression parameter
haftmann
parents: 38676
diff changeset
   405
        |> pair ""
39911
2b4430847310 moved ML_Context.value to Code_Runtime
haftmann
parents: 39606
diff changeset
   406
        |> Code_Runtime.value ctxt univs_cookie
25944
haftmann
parents: 25935
diff changeset
   407
        |> (fn f => f deps_vals)
haftmann
parents: 25935
diff changeset
   408
        |> (fn univs => cs ~~ univs)
haftmann
parents: 25935
diff changeset
   409
      end;
25190
5cd8486c5a4f clarified implementation
haftmann
parents: 25167
diff changeset
   410
30672
beaadd5af500 more systematic type use_context, with particular values ML_Parse.global_context and ML_Context.local_context;
wenzelm
parents: 30288
diff changeset
   411
39392
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   412
(* extract equations from statements *)
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   413
37437
4202e11ae7dc formal introduction of case cong
haftmann
parents: 37384
diff changeset
   414
fun eqns_of_stmt (_, Code_Thingol.Fun (_, ((_, []), _))) =
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   415
      []
37437
4202e11ae7dc formal introduction of case cong
haftmann
parents: 37384
diff changeset
   416
  | eqns_of_stmt (const, Code_Thingol.Fun (_, (((vs, _), eqns), _))) =
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   417
      [(const, (vs, map fst eqns))]
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27609
diff changeset
   418
  | eqns_of_stmt (_, Code_Thingol.Datatypecons _) =
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   419
      []
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27609
diff changeset
   420
  | eqns_of_stmt (_, Code_Thingol.Datatype _) =
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   421
      []
37447
ad3e04f289b6 transitive superclasses were also only a misunderstanding
haftmann
parents: 37446
diff changeset
   422
  | eqns_of_stmt (class, Code_Thingol.Class (_, (v, (super_classes, classparams)))) =
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   423
      let
37384
5aba26803073 more consistent naming aroud type classes and instances
haftmann
parents: 37146
diff changeset
   424
        val names = map snd super_classes @ map fst classparams;
43329
84472e198515 tuned signature: Name.invent and Name.invent_names;
wenzelm
parents: 43323
diff changeset
   425
        val params = Name.invent Name.context "d" (length names);
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   426
        fun mk (k, name) =
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   427
          (name, ([(v, [])],
44789
5a062c23c7db adding the body type as well to the code generation for constants as it is required for type annotations of constants
bulwahn
parents: 44788
diff changeset
   428
            [([IConst (class, ((([], []), ([], ITyVar "")), false)) `$$ map (IVar o SOME) params],
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
   429
              IVar (SOME (nth params k)))]));
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   430
      in map_index mk names end
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27609
diff changeset
   431
  | eqns_of_stmt (_, Code_Thingol.Classrel _) =
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   432
      []
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27609
diff changeset
   433
  | eqns_of_stmt (_, Code_Thingol.Classparam _) =
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   434
      []
37449
034ebe92f090 more precise code
haftmann
parents: 37447
diff changeset
   435
  | eqns_of_stmt (inst, Code_Thingol.Classinst ((class, (_, arity_args)), (super_instances, (classparam_instances, _)))) =
44789
5a062c23c7db adding the body type as well to the code generation for constants as it is required for type annotations of constants
bulwahn
parents: 44788
diff changeset
   436
      [(inst, (arity_args, [([], IConst (class, ((([], []), ([], ITyVar "")), false)) `$$
5a062c23c7db adding the body type as well to the code generation for constants as it is required for type annotations of constants
bulwahn
parents: 44788
diff changeset
   437
        map (fn (_, (_, (inst, dss))) => IConst (inst, ((([], dss), ([], ITyVar "")), false))) super_instances
37384
5aba26803073 more consistent naming aroud type classes and instances
haftmann
parents: 37146
diff changeset
   438
        @ map (IConst o snd o fst) classparam_instances)]))];
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   439
39392
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   440
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   441
(* compile whole programs *)
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   442
39399
267235a14938 static nbe conversion
haftmann
parents: 39396
diff changeset
   443
fun ensure_const_idx name (nbe_program, (maxidx, idx_tab)) =
267235a14938 static nbe conversion
haftmann
parents: 39396
diff changeset
   444
  if can (Graph.get_node nbe_program) name
267235a14938 static nbe conversion
haftmann
parents: 39396
diff changeset
   445
  then (nbe_program, (maxidx, idx_tab))
267235a14938 static nbe conversion
haftmann
parents: 39396
diff changeset
   446
  else (Graph.new_node (name, (NONE, maxidx)) nbe_program,
267235a14938 static nbe conversion
haftmann
parents: 39396
diff changeset
   447
    (maxidx + 1, Inttab.update_new (maxidx, name) idx_tab));
267235a14938 static nbe conversion
haftmann
parents: 39396
diff changeset
   448
39392
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   449
fun compile_stmts thy stmts_deps =
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   450
  let
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   451
    val names = map (fst o fst) stmts_deps;
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   452
    val names_deps = map (fn ((name, _), deps) => (name, deps)) stmts_deps;
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   453
    val eqnss = maps (eqns_of_stmt o fst) stmts_deps;
26064
65585de05a66 using integers for pattern matching
haftmann
parents: 26011
diff changeset
   454
    val refl_deps = names_deps
25190
5cd8486c5a4f clarified implementation
haftmann
parents: 25167
diff changeset
   455
      |> maps snd
5cd8486c5a4f clarified implementation
haftmann
parents: 25167
diff changeset
   456
      |> distinct (op =)
26064
65585de05a66 using integers for pattern matching
haftmann
parents: 26011
diff changeset
   457
      |> fold (insert (op =)) names;
39392
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   458
    fun compile nbe_program = eqnss
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   459
      |> compile_eqnss thy nbe_program refl_deps
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   460
      |> rpair nbe_program;
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   461
  in
39399
267235a14938 static nbe conversion
haftmann
parents: 39396
diff changeset
   462
    fold ensure_const_idx refl_deps
26064
65585de05a66 using integers for pattern matching
haftmann
parents: 26011
diff changeset
   463
    #> 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
   464
      #> compile
65585de05a66 using integers for pattern matching
haftmann
parents: 26011
diff changeset
   465
      #-> fold (fn (name, univ) => (Graph.map_node name o apfst) (K (SOME univ))))
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   466
  end;
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   467
39392
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   468
fun compile_program thy program =
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   469
  let
39392
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   470
    fun add_stmts names (nbe_program, (maxidx, idx_tab)) = if exists ((can o Graph.get_node) nbe_program) names
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   471
      then (nbe_program, (maxidx, idx_tab))
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   472
      else (nbe_program, (maxidx, idx_tab))
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   473
        |> compile_stmts thy (map (fn name => ((name, Graph.get_node program name),
44338
700008399ee5 refined Graph implementation: more abstract/scalable Graph.Keys instead of plain lists -- order of adjacency is now standardized wrt. Key.ord;
wenzelm
parents: 43619
diff changeset
   474
          Graph.immediate_succs program name)) names);
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28663
diff changeset
   475
  in
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28663
diff changeset
   476
    fold_rev add_stmts (Graph.strong_conn program)
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28663
diff changeset
   477
  end;
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   478
25944
haftmann
parents: 25935
diff changeset
   479
haftmann
parents: 25935
diff changeset
   480
(** evaluation **)
haftmann
parents: 25935
diff changeset
   481
39392
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   482
(* term evaluation by compilation *)
25944
haftmann
parents: 25935
diff changeset
   483
39392
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   484
fun compile_term thy nbe_program deps (vs : (string * sort) list, t) =
25924
f974a1c64348 improved implementation
haftmann
parents: 25865
diff changeset
   485
  let 
f974a1c64348 improved implementation
haftmann
parents: 25865
diff changeset
   486
    val dict_frees = maps (fn (v, sort) => map_index (curry DFree v o fst) sort) vs;
f974a1c64348 improved implementation
haftmann
parents: 25865
diff changeset
   487
  in
31064
ce37d8f48a9f treat frees driectly by the LCF kernel
haftmann
parents: 31049
diff changeset
   488
    ("", (vs, [([], t)]))
39392
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   489
    |> singleton (compile_eqnss thy nbe_program deps)
25924
f974a1c64348 improved implementation
haftmann
parents: 25865
diff changeset
   490
    |> snd
31064
ce37d8f48a9f treat frees driectly by the LCF kernel
haftmann
parents: 31049
diff changeset
   491
    |> (fn t => apps t (rev dict_frees))
25924
f974a1c64348 improved implementation
haftmann
parents: 25865
diff changeset
   492
  end;
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   493
35371
6c92eb394e3c tuned whitespace
haftmann
parents: 34251
diff changeset
   494
39392
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   495
(* reconstruction *)
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   496
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   497
fun typ_of_itype program vs (ityco `%% itys) =
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   498
      let
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   499
        val Code_Thingol.Datatype (tyco, _) = Graph.get_node program ityco;
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   500
      in Type (tyco, map (typ_of_itype program vs) itys) end
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   501
  | typ_of_itype program vs (ITyVar v) =
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   502
      let
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   503
        val sort = (the o AList.lookup (op =) vs) v;
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   504
      in TFree ("'" ^ v, sort) end;
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   505
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   506
fun term_of_univ thy program idx_tab t =
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   507
  let
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   508
    fun take_until f [] = []
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   509
      | 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
   510
    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
   511
         of Code_Thingol.Class _ => true
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   512
          | Code_Thingol.Classrel _ => true
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   513
          | Code_Thingol.Classinst _ => true
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   514
          | _ => false)
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   515
      | is_dict (DFree _) = true
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   516
      | is_dict _ = false;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   517
    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
   518
     of Code_Thingol.Fun (c, _) => c
6c92eb394e3c tuned whitespace
haftmann
parents: 34251
diff changeset
   519
      | Code_Thingol.Datatypecons (c, _) => c
6c92eb394e3c tuned whitespace
haftmann
parents: 34251
diff changeset
   520
      | Code_Thingol.Classparam (c, _) => c);
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   521
    fun of_apps bounds (t, ts) =
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   522
      fold_map (of_univ bounds) ts
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   523
      #>> (fn ts' => list_comb (t, rev ts'))
26064
65585de05a66 using integers for pattern matching
haftmann
parents: 26011
diff changeset
   524
    and of_univ bounds (Const (idx, ts)) typidx =
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   525
          let
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   526
            val ts' = take_until is_dict ts;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   527
            val c = const_of_idx idx;
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31889
diff changeset
   528
            val T = map_type_tvar (fn ((v, i), _) =>
37145
01aa36932739 renamed structure TypeInfer to Type_Infer, keeping the old name as legacy alias for some time;
wenzelm
parents: 36982
diff changeset
   529
              Type_Infer.param typidx (v ^ string_of_int i, []))
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31889
diff changeset
   530
                (Sign.the_const_type thy c);
30022
1d8b8fa19074 maintain order of constructors in datatypes; clarified conventions for type schemes
haftmann
parents: 29272
diff changeset
   531
            val typidx' = typidx + 1;
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31889
diff changeset
   532
          in of_apps bounds (Term.Const (c, T), ts') typidx' end
27499
150558266831 clarified code
haftmann
parents: 27264
diff changeset
   533
      | of_univ bounds (BVar (n, ts)) typidx =
150558266831 clarified code
haftmann
parents: 27264
diff changeset
   534
          of_apps bounds (Bound (bounds - n - 1), ts) typidx
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   535
      | of_univ bounds (t as Abs _) typidx =
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   536
          typidx
25924
f974a1c64348 improved implementation
haftmann
parents: 25865
diff changeset
   537
          |> of_univ (bounds + 1) (apps t [BVar (bounds, [])])
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   538
          |-> (fn t' => pair (Term.Abs ("u", dummyT, t')))
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   539
  in of_univ 0 t 0 |> fst end;
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   540
35371
6c92eb394e3c tuned whitespace
haftmann
parents: 34251
diff changeset
   541
39392
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   542
(* evaluation with type reconstruction *)
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   543
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   544
fun eval_term thy program (nbe_program, idx_tab) ((vs0, (vs, ty)), t) deps =
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   545
  let
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   546
    val ctxt = Syntax.init_pretty_global thy;
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   547
    val string_of_term = Syntax.string_of_term (Config.put show_types true ctxt);
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   548
    val ty' = typ_of_itype program vs0 ty;
42405
13ecdb3057d8 split Type_Infer into early and late part, after Proof_Context;
wenzelm
parents: 42361
diff changeset
   549
    fun type_infer t =
13ecdb3057d8 split Type_Infer into early and late part, after Proof_Context;
wenzelm
parents: 42361
diff changeset
   550
      Syntax.check_term (Config.put Type_Infer_Context.const_sorts false ctxt)
13ecdb3057d8 split Type_Infer into early and late part, after Proof_Context;
wenzelm
parents: 42361
diff changeset
   551
        (Type.constraint ty' t);
39392
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   552
    fun check_tvars t =
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   553
      if null (Term.add_tvars t []) then t
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   554
      else error ("Illegal schematic type variables in normalized term: " ^ string_of_term t);
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   555
  in
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   556
    compile_term thy nbe_program deps (vs, t)
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   557
    |> term_of_univ thy program idx_tab
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   558
    |> traced (fn t => "Normalized:\n" ^ string_of_term t)
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   559
    |> type_infer
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   560
    |> traced (fn t => "Types inferred:\n" ^ string_of_term t)
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   561
    |> check_tvars
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   562
    |> traced (fn _ => "---\n")
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   563
  end;
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   564
39436
4a7d09da2b9c tuned whitespace
haftmann
parents: 39399
diff changeset
   565
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   566
(* function store *)
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   567
34173
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 33522
diff changeset
   568
structure Nbe_Functions = Code_Data
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   569
(
35500
118cda173627 dropped superfluous naming
haftmann
parents: 35371
diff changeset
   570
  type T = (Univ option * int) Graph.T * (int * string Inttab.table);
118cda173627 dropped superfluous naming
haftmann
parents: 35371
diff changeset
   571
  val empty = (Graph.empty, (0, Inttab.empty));
25101
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   572
);
cae0f68b693b now employing dictionaries
haftmann
parents: 25098
diff changeset
   573
39399
267235a14938 static nbe conversion
haftmann
parents: 39396
diff changeset
   574
fun compile ignore_cache thy program =
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   575
  let
39392
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   576
    val (nbe_program, (_, idx_tab)) =
39399
267235a14938 static nbe conversion
haftmann
parents: 39396
diff changeset
   577
      Nbe_Functions.change (if ignore_cache then NONE else SOME thy)
267235a14938 static nbe conversion
haftmann
parents: 39396
diff changeset
   578
        (compile_program thy program);
39392
7a0fcee7a2a3 more clear separation of static compilation and dynamic evaluation
haftmann
parents: 39388
diff changeset
   579
  in (nbe_program, idx_tab) end;
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   580
32544
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32123
diff changeset
   581
39396
e9cad160aa0f dropped redundant normal_form command
haftmann
parents: 39392
diff changeset
   582
(* dynamic evaluation oracle *)
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   583
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   584
fun mk_equals thy lhs raw_rhs =
26747
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26739
diff changeset
   585
  let
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   586
    val ty = Thm.typ_of (Thm.ctyp_of_term lhs);
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   587
    val eq = Thm.cterm_of thy (Term.Const ("==", ty --> ty --> propT));
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   588
    val rhs = Thm.cterm_of thy raw_rhs;
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   589
  in Thm.mk_binop eq lhs rhs end;
26747
f32fa5f5bdd1 moved 'trivial classes' to foundation of code generator
haftmann
parents: 26739
diff changeset
   590
38669
9ff76d0f0610 refined and unified naming convention for dynamic code evaluation techniques
haftmann
parents: 37449
diff changeset
   591
val (_, raw_oracle) = Context.>>> (Context.map_theory_result
43619
3803869014aa proper @{binding} antiquotations (relevant for formal references);
wenzelm
parents: 43329
diff changeset
   592
  (Thm.add_oracle (@{binding normalization_by_evaluation},
39399
267235a14938 static nbe conversion
haftmann
parents: 39396
diff changeset
   593
    fn (thy, program, nbe_program_idx_tab, vsp_ty_t, deps, ct) =>
267235a14938 static nbe conversion
haftmann
parents: 39396
diff changeset
   594
      mk_equals thy ct (eval_term thy program nbe_program_idx_tab vsp_ty_t deps))));
31064
ce37d8f48a9f treat frees driectly by the LCF kernel
haftmann
parents: 31049
diff changeset
   595
39399
267235a14938 static nbe conversion
haftmann
parents: 39396
diff changeset
   596
fun oracle thy program nbe_program_idx_tab vsp_ty_t deps ct =
267235a14938 static nbe conversion
haftmann
parents: 39396
diff changeset
   597
  raw_oracle (thy, program, nbe_program_idx_tab, vsp_ty_t, deps, ct);
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30672
diff changeset
   598
41247
c5cb19ecbd41 avoid slightly odd Conv.tap_thy
haftmann
parents: 41184
diff changeset
   599
fun dynamic_conv thy = lift_triv_classes_conv thy (Code_Thingol.dynamic_conv thy
c5cb19ecbd41 avoid slightly odd Conv.tap_thy
haftmann
parents: 41184
diff changeset
   600
    (K (fn program => oracle thy program (compile false thy program))));
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   601
41184
5c6f44d22f51 simplified evaluation function names
haftmann
parents: 41118
diff changeset
   602
fun dynamic_value thy = lift_triv_classes_rew thy
5c6f44d22f51 simplified evaluation function names
haftmann
parents: 41118
diff changeset
   603
  (Code_Thingol.dynamic_value thy I
39606
7af0441a3a47 no_frees_* is subsumed by new framework mechanisms in Code_Preproc
haftmann
parents: 39475
diff changeset
   604
    (K (fn program => eval_term thy program (compile false thy program))));
39399
267235a14938 static nbe conversion
haftmann
parents: 39396
diff changeset
   605
41184
5c6f44d22f51 simplified evaluation function names
haftmann
parents: 41118
diff changeset
   606
fun static_conv thy consts =
5c6f44d22f51 simplified evaluation function names
haftmann
parents: 41118
diff changeset
   607
  lift_triv_classes_conv thy (Code_Thingol.static_conv thy consts
41346
6673f6fa94ca canonical handling of theory context argument
haftmann
parents: 41247
diff changeset
   608
    (K (fn program => fn _ => let val nbe_program = compile true thy program
6673f6fa94ca canonical handling of theory context argument
haftmann
parents: 41247
diff changeset
   609
      in oracle thy program nbe_program end)));
24839
199c48ec5a09 step towards proper purge operation
haftmann
parents: 24713
diff changeset
   610
41184
5c6f44d22f51 simplified evaluation function names
haftmann
parents: 41118
diff changeset
   611
fun static_value thy consts = lift_triv_classes_rew thy
5c6f44d22f51 simplified evaluation function names
haftmann
parents: 41118
diff changeset
   612
  (Code_Thingol.static_value thy I consts
41346
6673f6fa94ca canonical handling of theory context argument
haftmann
parents: 41247
diff changeset
   613
    (K (fn program => fn _ => let val nbe_program = compile true thy program
6673f6fa94ca canonical handling of theory context argument
haftmann
parents: 41247
diff changeset
   614
      in eval_term thy program (compile false thy program) end)));
41184
5c6f44d22f51 simplified evaluation function names
haftmann
parents: 41118
diff changeset
   615
35371
6c92eb394e3c tuned whitespace
haftmann
parents: 34251
diff changeset
   616
39396
e9cad160aa0f dropped redundant normal_form command
haftmann
parents: 39392
diff changeset
   617
(** setup **)
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   618
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 41472
diff changeset
   619
val setup = Value.add_evaluator ("nbe", dynamic_value o Proof_Context.theory_of);
24155
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   620
d86867645f4f nbe improved
haftmann
parents:
diff changeset
   621
end;
28337
93964076e7b8 case default fallback for NBE
haftmann
parents: 28296
diff changeset
   622