src/HOL/Tools/code_evaluation.ML
author haftmann
Mon, 20 Sep 2010 15:25:32 +0200
changeset 39565 f4f87c6e2fad
parent 39564 acfd10e38e80
child 39567 5ee997fbe5cc
permissions -rw-r--r--
full palette of dynamic/static value(_strict/exn)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
39564
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
     1
(*  Title:      HOL/Tools/code_evaluation.ML
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
     2
    Author:     Florian Haftmann, TU Muenchen
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
     3
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
     4
Evaluation and reconstruction of terms in ML.
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
     5
*)
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
     6
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
     7
signature CODE_EVALUATION =
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
     8
sig
39565
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
     9
  val dynamic_value: theory -> term -> term option
39564
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    10
  val dynamic_value_strict: theory -> term -> term
39565
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
    11
  val dynamic_value_exn: theory -> term -> term Exn.result
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
    12
  val static_value: theory -> string list -> typ list -> term -> term option
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
    13
  val static_value_strict: theory -> string list -> typ list -> term -> term
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
    14
  val static_value_exn: theory -> string list -> typ list -> term -> term Exn.result
39564
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    15
  val put_term: (unit -> term) -> Proof.context -> Proof.context
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    16
  val tracing: string -> 'a -> 'a
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    17
  val setup: theory -> theory
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    18
end;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    19
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    20
structure Code_Evaluation : CODE_EVALUATION =
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    21
struct
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    22
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    23
(** term_of instances **)
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    24
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    25
(* formal definition *)
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    26
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    27
fun add_term_of tyco raw_vs thy =
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    28
  let
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    29
    val vs = map (fn (v, _) => (v, @{sort typerep})) raw_vs;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    30
    val ty = Type (tyco, map TFree vs);
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    31
    val lhs = Const (@{const_name term_of}, ty --> @{typ term})
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    32
      $ Free ("x", ty);
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    33
    val rhs = @{term "undefined :: term"};
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    34
    val eq = HOLogic.mk_Trueprop (HOLogic.mk_eq (lhs, rhs));
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    35
    fun triv_name_of t = (fst o dest_Free o fst o strip_comb o fst
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    36
      o HOLogic.dest_eq o HOLogic.dest_Trueprop) t ^ "_triv";
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    37
  in
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    38
    thy
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    39
    |> Class.instantiation ([tyco], vs, @{sort term_of})
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    40
    |> `(fn lthy => Syntax.check_term lthy eq)
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    41
    |-> (fn eq => Specification.definition (NONE, ((Binding.name (triv_name_of eq), []), eq)))
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    42
    |> snd
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    43
    |> Class.prove_instantiation_exit (K (Class.intro_classes_tac []))
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    44
  end;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    45
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    46
fun ensure_term_of (tyco, (raw_vs, _)) thy =
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    47
  let
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    48
    val need_inst = not (can (Sorts.mg_domain (Sign.classes_of thy) tyco) @{sort term_of})
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    49
      andalso can (Sorts.mg_domain (Sign.classes_of thy) tyco) @{sort typerep};
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    50
  in if need_inst then add_term_of tyco raw_vs thy else thy end;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    51
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    52
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    53
(* code equations for datatypes *)
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    54
39565
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
    55
fun mk_term_of_eq thy ty (c, tys) =
39564
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    56
  let
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    57
    val t = list_comb (Const (c, tys ---> ty),
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    58
      map Free (Name.names Name.context "a" tys));
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    59
    val (arg, rhs) =
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    60
      pairself (Thm.cterm_of thy o map_types Logic.unvarifyT_global o Logic.varify_global)
39565
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
    61
        (t, (map_aterms (fn t as Free (_, ty) => HOLogic.mk_term_of ty t | t => t) o HOLogic.reflect_term) t)
39564
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    62
    val cty = Thm.ctyp_of thy ty;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    63
  in
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    64
    @{thm term_of_anything}
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    65
    |> Drule.instantiate' [SOME cty] [SOME arg, SOME rhs]
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    66
    |> Thm.varifyT_global
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    67
  end;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    68
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    69
fun add_term_of_code tyco raw_vs raw_cs thy =
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    70
  let
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    71
    val algebra = Sign.classes_of thy;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    72
    val vs = map (fn (v, sort) =>
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    73
      (v, curry (Sorts.inter_sort algebra) @{sort typerep} sort)) raw_vs;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    74
    val ty = Type (tyco, map TFree vs);
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    75
    val cs = (map o apsnd o map o map_atyps)
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    76
      (fn TFree (v, _) => TFree (v, (the o AList.lookup (op =) vs) v)) raw_cs;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    77
    val const = AxClass.param_of_inst thy (@{const_name term_of}, tyco);
39565
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
    78
    val eqs = map (mk_term_of_eq thy ty) cs;
39564
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    79
 in
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    80
    thy
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    81
    |> Code.del_eqns const
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    82
    |> fold Code.add_eqn eqs
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    83
  end;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    84
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    85
fun ensure_term_of_code (tyco, (raw_vs, cs)) thy =
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    86
  let
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    87
    val has_inst = can (Sorts.mg_domain (Sign.classes_of thy) tyco) @{sort term_of};
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    88
  in if has_inst then add_term_of_code tyco raw_vs cs thy else thy end;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    89
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    90
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    91
(* code equations for abstypes *)
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    92
39565
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
    93
fun mk_abs_term_of_eq thy ty abs ty_rep proj =
39564
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    94
  let
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    95
    val arg = Var (("x", 0), ty);
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    96
    val rhs = Abs ("y", @{typ term}, HOLogic.reflect_term (Const (abs, ty_rep --> ty) $ Bound 0)) $
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    97
      (HOLogic.mk_term_of ty_rep (Const (proj, ty --> ty_rep) $ arg))
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    98
      |> Thm.cterm_of thy;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
    99
    val cty = Thm.ctyp_of thy ty;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   100
  in
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   101
    @{thm term_of_anything}
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   102
    |> Drule.instantiate' [SOME cty] [SOME (Thm.cterm_of thy arg), SOME rhs]
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   103
    |> Thm.varifyT_global
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   104
  end;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   105
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   106
fun add_abs_term_of_code tyco raw_vs abs raw_ty_rep proj thy =
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   107
  let
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   108
    val algebra = Sign.classes_of thy;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   109
    val vs = map (fn (v, sort) =>
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   110
      (v, curry (Sorts.inter_sort algebra) @{sort typerep} sort)) raw_vs;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   111
    val ty = Type (tyco, map TFree vs);
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   112
    val ty_rep = map_atyps
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   113
      (fn TFree (v, _) => TFree (v, (the o AList.lookup (op =) vs) v)) raw_ty_rep;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   114
    val const = AxClass.param_of_inst thy (@{const_name term_of}, tyco);
39565
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   115
    val eq = mk_abs_term_of_eq thy ty abs ty_rep proj;
39564
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   116
 in
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   117
    thy
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   118
    |> Code.del_eqns const
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   119
    |> Code.add_eqn eq
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   120
  end;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   121
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   122
fun ensure_abs_term_of_code (tyco, (raw_vs, ((abs, ty), (proj, _)))) thy =
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   123
  let
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   124
    val has_inst = can (Sorts.mg_domain (Sign.classes_of thy) tyco) @{sort term_of};
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   125
  in if has_inst then add_abs_term_of_code tyco raw_vs abs ty proj thy else thy end;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   126
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   127
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   128
(** termifying syntax **)
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   129
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   130
fun map_default f xs =
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   131
  let val ys = map f xs
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   132
  in if exists is_some ys
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   133
    then SOME (map2 the_default xs ys)
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   134
    else NONE
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   135
  end;
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   136
39565
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   137
fun subst_termify_app (Const (@{const_name termify}, _), [t]) =
39564
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   138
      if not (Term.has_abs t)
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   139
      then if fold_aterms (fn Const _ => I | _ => K false) t true
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   140
        then SOME (HOLogic.reflect_term t)
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   141
        else error "Cannot termify expression containing variables"
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   142
      else error "Cannot termify expression containing abstraction"
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   143
  | subst_termify_app (t, ts) = case map_default subst_termify ts
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   144
     of SOME ts' => SOME (list_comb (t, ts'))
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   145
      | NONE => NONE
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   146
and subst_termify (Abs (v, T, t)) = (case subst_termify t
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   147
     of SOME t' => SOME (Abs (v, T, t'))
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   148
      | NONE => NONE)
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   149
  | subst_termify t = subst_termify_app (strip_comb t) 
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   150
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   151
fun check_termify ts ctxt = map_default subst_termify ts
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   152
  |> Option.map (rpair ctxt)
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   153
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   154
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   155
(** evaluation **)
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   156
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   157
structure Evaluation = Proof_Data (
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   158
  type T = unit -> term
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   159
  fun init _ () = error "Evaluation"
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   160
);
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   161
val put_term = Evaluation.put;
39565
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   162
val cookie = (Evaluation.get, put_term, "Code_Evaluation.put_term");
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   163
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   164
fun mk_term_of t = HOLogic.mk_term_of (fastype_of t) t;
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   165
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   166
fun term_of_const_for thy = AxClass.unoverload_const thy o dest_Const o HOLogic.term_of_const;
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   167
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   168
fun gen_dynamic_value dynamic_value thy t =
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   169
  dynamic_value cookie thy NONE I (mk_term_of t) [];
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   170
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   171
val dynamic_value = gen_dynamic_value Code_Runtime.dynamic_value;
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   172
val dynamic_value_strict = gen_dynamic_value Code_Runtime.dynamic_value_strict;
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   173
val dynamic_value_exn = gen_dynamic_value Code_Runtime.dynamic_value_exn;
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   174
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   175
fun gen_static_value static_value thy consts Ts =
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   176
  static_value cookie thy NONE I (union (op =) (map (term_of_const_for thy) Ts) consts)
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   177
  o mk_term_of;
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   178
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   179
val static_value = gen_static_value Code_Runtime.static_value;
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   180
val static_value_strict = gen_static_value Code_Runtime.static_value_strict;
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   181
val static_value_exn = gen_static_value Code_Runtime.static_value_exn;
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   182
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   183
f4f87c6e2fad full palette of dynamic/static value(_strict/exn)
haftmann
parents: 39564
diff changeset
   184
(** diagnostic **)
39564
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   185
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   186
fun tracing s x = (Output.tracing s; x);
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   187
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   188
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   189
(** setup **)
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   190
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   191
val setup =
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   192
  Code.datatype_interpretation ensure_term_of
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   193
  #> Code.abstype_interpretation ensure_term_of
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   194
  #> Code.datatype_interpretation ensure_term_of_code
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   195
  #> Code.abstype_interpretation ensure_abs_term_of_code
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   196
  #> Context.theory_map (Syntax.add_term_check 0 "termify" check_termify)
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   197
  #> Value.add_evaluator ("code", dynamic_value_strict o ProofContext.theory_of);
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   198
acfd10e38e80 Factored out ML into separate file
haftmann
parents:
diff changeset
   199
end;