src/HOL/Code_Eval.thy
author wenzelm
Tue, 21 Jul 2009 01:03:18 +0200
changeset 32091 30e2ffbba718
parent 32069 6d28bbd33e2c
child 32344 55ca0df19af5
permissions -rw-r--r--
proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
     1
(*  Title:      HOL/Code_Eval.thy
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
     2
    Author:     Florian Haftmann, TU Muenchen
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
     3
*)
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
     4
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
     5
header {* Term evaluation using the generic code generator *}
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
     6
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
     7
theory Code_Eval
31205
98370b26c2ce String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents: 31203
diff changeset
     8
imports Plain Typerep Code_Numeral
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
     9
begin
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    10
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    11
subsection {* Term representation *}
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    12
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    13
subsubsection {* Terms and class @{text term_of} *}
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    14
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    15
datatype "term" = dummy_term
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    16
31205
98370b26c2ce String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents: 31203
diff changeset
    17
definition Const :: "String.literal \<Rightarrow> typerep \<Rightarrow> term" where
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    18
  "Const _ _ = dummy_term"
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    19
28661
a287d0e8aa9d slightly tuned
haftmann
parents: 28562
diff changeset
    20
definition App :: "term \<Rightarrow> term \<Rightarrow> term" where
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    21
  "App _ _ = dummy_term"
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    22
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    23
code_datatype Const App
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    24
28335
25326092cf9a renamed rtype to typerep
haftmann
parents: 28313
diff changeset
    25
class term_of = typerep +
31031
cbec39ebf8f2 class typerep inherits from type
haftmann
parents: 30970
diff changeset
    26
  fixes term_of :: "'a \<Rightarrow> term"
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    27
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    28
lemma term_of_anything: "term_of x \<equiv> t"
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    29
  by (rule eq_reflection) (cases "term_of x", cases t, simp)
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    30
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
    31
definition valapp :: "('a \<Rightarrow> 'b) \<times> (unit \<Rightarrow> term)
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
    32
  \<Rightarrow> 'a \<times> (unit \<Rightarrow> term) \<Rightarrow> 'b \<times> (unit \<Rightarrow> term)" where
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
    33
  "valapp f x = (fst f (fst x), \<lambda>u. App (snd f ()) (snd x ()))"
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
    34
32069
6d28bbd33e2c prefer code_inline over code_unfold; use code_unfold_post where appropriate
haftmann
parents: 31998
diff changeset
    35
lemma valapp_code [code, code_unfold]:
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
    36
  "valapp (f, tf) (x, tx) = (f x, \<lambda>u. App (tf ()) (tx ()))"
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
    37
  by (simp only: valapp_def fst_conv snd_conv)
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
    38
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    39
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    40
subsubsection {* @{text term_of} instances *}
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    41
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    42
setup {*
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    43
let
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    44
  fun add_term_of tyco raw_vs thy =
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    45
    let
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    46
      val vs = map (fn (v, _) => (v, @{sort typerep})) raw_vs;
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    47
      val ty = Type (tyco, map TFree vs);
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    48
      val lhs = Const (@{const_name term_of}, ty --> @{typ term})
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    49
        $ Free ("x", ty);
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    50
      val rhs = @{term "undefined \<Colon> term"};
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    51
      val eq = HOLogic.mk_Trueprop (HOLogic.mk_eq (lhs, rhs));
28243
84d90ec67059 moved term_of syntax to separate theory
haftmann
parents: 28228
diff changeset
    52
      fun triv_name_of t = (fst o dest_Free o fst o strip_comb o fst
84d90ec67059 moved term_of syntax to separate theory
haftmann
parents: 28228
diff changeset
    53
        o HOLogic.dest_eq o HOLogic.dest_Trueprop) t ^ "_triv";
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    54
    in
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    55
      thy
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    56
      |> TheoryTarget.instantiation ([tyco], vs, @{sort term_of})
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    57
      |> `(fn lthy => Syntax.check_term lthy eq)
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28952
diff changeset
    58
      |-> (fn eq => Specification.definition (NONE, ((Binding.name (triv_name_of eq), []), eq)))
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    59
      |> snd
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    60
      |> Class.prove_instantiation_exit (K (Class.intro_classes_tac []))
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    61
    end;
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    62
  fun ensure_term_of (tyco, (raw_vs, _)) thy =
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    63
    let
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    64
      val need_inst = not (can (Sorts.mg_domain (Sign.classes_of thy) tyco) @{sort term_of})
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    65
        andalso can (Sorts.mg_domain (Sign.classes_of thy) tyco) @{sort typerep};
31205
98370b26c2ce String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents: 31203
diff changeset
    66
    in if need_inst then add_term_of tyco raw_vs thy else thy end;
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    67
in
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    68
  Code.type_interpretation ensure_term_of
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    69
end
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    70
*}
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    71
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    72
setup {*
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    73
let
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    74
  fun mk_term_of_eq thy ty vs tyco (c, tys) =
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    75
    let
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    76
      val t = list_comb (Const (c, tys ---> ty),
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    77
        map Free (Name.names Name.context "a" tys));
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    78
      val (arg, rhs) = pairself (Thm.cterm_of thy o map_types Logic.unvarifyT o Logic.varify)
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    79
        (t, (map_aterms (fn t as Free (v, ty) => HOLogic.mk_term_of ty t | t => t) o HOLogic.reflect_term) t)
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    80
      val cty = Thm.ctyp_of thy ty;
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    81
    in
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    82
      @{thm term_of_anything}
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    83
      |> Drule.instantiate' [SOME cty] [SOME arg, SOME rhs]
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    84
      |> Thm.varifyT
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    85
    end;
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    86
  fun add_term_of_code tyco raw_vs raw_cs thy =
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    87
    let
31746
75fe3304015c code equation observes default sort constraints for types
haftmann
parents: 31594
diff changeset
    88
      val algebra = Sign.classes_of thy;
75fe3304015c code equation observes default sort constraints for types
haftmann
parents: 31594
diff changeset
    89
      val vs = map (fn (v, sort) =>
75fe3304015c code equation observes default sort constraints for types
haftmann
parents: 31594
diff changeset
    90
        (v, curry (Sorts.inter_sort algebra) @{sort typerep} sort)) raw_vs;
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    91
      val ty = Type (tyco, map TFree vs);
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    92
      val cs = (map o apsnd o map o map_atyps)
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    93
        (fn TFree (v, _) => TFree (v, (the o AList.lookup (op =) vs) v)) raw_cs;
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    94
      val const = AxClass.param_of_inst thy (@{const_name term_of}, tyco);
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    95
      val eqs = map (mk_term_of_eq thy ty vs tyco) cs;
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    96
   in
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    97
      thy
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    98
      |> Code.del_eqns const
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    99
      |> fold Code.add_eqn eqs
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
   100
    end;
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
   101
  fun ensure_term_of_code (tyco, (raw_vs, cs)) thy =
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
   102
    let
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
   103
      val has_inst = can (Sorts.mg_domain (Sign.classes_of thy) tyco) @{sort term_of};
31205
98370b26c2ce String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents: 31203
diff changeset
   104
    in if has_inst then add_term_of_code tyco raw_vs cs thy else thy end;
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   105
in
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
   106
  Code.type_interpretation ensure_term_of_code
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   107
end
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   108
*}
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   109
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   110
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   111
subsubsection {* Code generator setup *}
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   112
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28394
diff changeset
   113
lemmas [code del] = term.recs term.cases term.size
4e74209f113e `code func` now just `code`
haftmann
parents: 28394
diff changeset
   114
lemma [code, code del]: "eq_class.eq (t1\<Colon>term) t2 \<longleftrightarrow> eq_class.eq t1 t2" ..
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   115
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28394
diff changeset
   116
lemma [code, code del]: "(term_of \<Colon> typerep \<Rightarrow> term) = term_of" ..
4e74209f113e `code func` now just `code`
haftmann
parents: 28394
diff changeset
   117
lemma [code, code del]: "(term_of \<Colon> term \<Rightarrow> term) = term_of" ..
31205
98370b26c2ce String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents: 31203
diff changeset
   118
lemma [code, code del]: "(term_of \<Colon> String.literal \<Rightarrow> term) = term_of" ..
30427
dfd31c1db060 delete code equations for types pred and seq
haftmann
parents: 29575
diff changeset
   119
lemma [code, code del]:
dfd31c1db060 delete code equations for types pred and seq
haftmann
parents: 29575
diff changeset
   120
  "(Code_Eval.term_of \<Colon> 'a::{type, term_of} Predicate.pred \<Rightarrow> Code_Eval.term) = Code_Eval.term_of" ..
dfd31c1db060 delete code equations for types pred and seq
haftmann
parents: 29575
diff changeset
   121
lemma [code, code del]:
dfd31c1db060 delete code equations for types pred and seq
haftmann
parents: 29575
diff changeset
   122
  "(Code_Eval.term_of \<Colon> 'a::{type, term_of} Predicate.seq \<Rightarrow> Code_Eval.term) = Code_Eval.term_of" ..
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   123
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28394
diff changeset
   124
lemma term_of_char [unfolded typerep_fun_def typerep_char_def typerep_nibble_def, code]: "Code_Eval.term_of c =
28243
84d90ec67059 moved term_of syntax to separate theory
haftmann
parents: 28228
diff changeset
   125
    (let (n, m) = nibble_pair_of_char c
28335
25326092cf9a renamed rtype to typerep
haftmann
parents: 28313
diff changeset
   126
  in Code_Eval.App (Code_Eval.App (Code_Eval.Const (STR ''Pair'') (TYPEREP(nibble \<Rightarrow> nibble \<Rightarrow> char)))
28243
84d90ec67059 moved term_of syntax to separate theory
haftmann
parents: 28228
diff changeset
   127
    (Code_Eval.term_of n)) (Code_Eval.term_of m))"
84d90ec67059 moved term_of syntax to separate theory
haftmann
parents: 28228
diff changeset
   128
  by (subst term_of_anything) rule 
84d90ec67059 moved term_of syntax to separate theory
haftmann
parents: 28228
diff changeset
   129
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   130
code_type "term"
31031
cbec39ebf8f2 class typerep inherits from type
haftmann
parents: 30970
diff changeset
   131
  (Eval "Term.term")
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   132
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   133
code_const Const and App
31594
a94aa5f045fb less brackets
haftmann
parents: 31205
diff changeset
   134
  (Eval "Term.Const/ ((_), (_))" and "Term.$/ ((_), (_))")
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   135
31205
98370b26c2ce String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents: 31203
diff changeset
   136
code_const "term_of \<Colon> String.literal \<Rightarrow> term"
31048
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31031
diff changeset
   137
  (Eval "HOLogic.mk'_message'_string")
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31031
diff changeset
   138
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31031
diff changeset
   139
code_reserved Eval HOLogic
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   140
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   141
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   142
subsubsection {* Syntax *}
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   143
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   144
definition termify :: "'a \<Rightarrow> term" where
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   145
  [code del]: "termify x = dummy_term"
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   146
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   147
abbreviation valtermify :: "'a \<Rightarrow> 'a \<times> (unit \<Rightarrow> term)" where
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   148
  "valtermify x \<equiv> (x, \<lambda>u. termify x)"
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   149
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   150
setup {*
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   151
let
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   152
  fun map_default f xs =
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   153
    let val ys = map f xs
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   154
    in if exists is_some ys
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   155
      then SOME (map2 the_default xs ys)
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   156
      else NONE
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   157
    end;
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   158
  fun subst_termify_app (Const (@{const_name termify}, T), [t]) =
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   159
        if not (Term.has_abs t)
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   160
        then if fold_aterms (fn Const _ => I | _ => K false) t true
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   161
          then SOME (HOLogic.reflect_term t)
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   162
          else error "Cannot termify expression containing variables"
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   163
        else error "Cannot termify expression containing abstraction"
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   164
    | subst_termify_app (t, ts) = case map_default subst_termify ts
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   165
       of SOME ts' => SOME (list_comb (t, ts'))
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   166
        | NONE => NONE
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   167
  and subst_termify (Abs (v, T, t)) = (case subst_termify t
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   168
       of SOME t' => SOME (Abs (v, T, t'))
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   169
        | NONE => NONE)
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   170
    | subst_termify t = subst_termify_app (strip_comb t) 
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   171
  fun check_termify ts ctxt = map_default subst_termify ts
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   172
    |> Option.map (rpair ctxt)
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   173
in
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   174
  Context.theory_map (Syntax.add_term_check 0 "termify" check_termify)
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   175
end;
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   176
*}
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   177
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   178
locale term_syntax
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   179
begin
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   180
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   181
notation App (infixl "<\<cdot>>" 70)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   182
  and valapp (infixl "{\<cdot>}" 70)
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   183
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   184
end
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   185
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   186
interpretation term_syntax .
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   187
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   188
no_notation App (infixl "<\<cdot>>" 70)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   189
  and valapp (infixl "{\<cdot>}" 70)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   190
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   192
subsection {* Numeric types *}
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   193
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   194
definition term_of_num :: "'a\<Colon>{semiring_div} \<Rightarrow> 'a\<Colon>{semiring_div} \<Rightarrow> term" where
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   195
  "term_of_num two = (\<lambda>_. dummy_term)"
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   196
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   197
lemma (in term_syntax) term_of_num_code [code]:
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   198
  "term_of_num two k = (if k = 0 then termify Int.Pls
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   199
    else (if k mod two = 0
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   200
      then termify Int.Bit0 <\<cdot>> term_of_num two (k div two)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   201
      else termify Int.Bit1 <\<cdot>> term_of_num two (k div two)))"
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   202
  by (auto simp add: term_of_anything Const_def App_def term_of_num_def Let_def)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   203
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   204
lemma (in term_syntax) term_of_nat_code [code]:
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   205
  "term_of (n::nat) = termify (number_of :: int \<Rightarrow> nat) <\<cdot>> term_of_num (2::nat) n"
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   206
  by (simp only: term_of_anything)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   207
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   208
lemma (in term_syntax) term_of_int_code [code]:
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   209
  "term_of (k::int) = (if k = 0 then termify (0 :: int)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   210
    else if k > 0 then termify (number_of :: int \<Rightarrow> int) <\<cdot>> term_of_num (2::int) k
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   211
      else termify (uminus :: int \<Rightarrow> int) <\<cdot>> (termify (number_of :: int \<Rightarrow> int) <\<cdot>> term_of_num (2::int) (- k)))"
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   212
  by (simp only: term_of_anything)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   213
31205
98370b26c2ce String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents: 31203
diff changeset
   214
lemma (in term_syntax) term_of_code_numeral_code [code]:
98370b26c2ce String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents: 31203
diff changeset
   215
  "term_of (k::code_numeral) = termify (number_of :: int \<Rightarrow> code_numeral) <\<cdot>> term_of_num (2::code_numeral) k"
31203
5c8fb4fd67e0 moved Code_Index, Random and Quickcheck before Main
haftmann
parents: 31191
diff changeset
   216
  by (simp only: term_of_anything)
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   217
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   218
subsection {* Obfuscate *}
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   219
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   220
print_translation {*
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   221
let
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   222
  val term = Const ("<TERM>", dummyT);
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   223
  fun tr1' [_, _] = term;
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   224
  fun tr2' [] = term;
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   225
in
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   226
  [(@{const_syntax Const}, tr1'),
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   227
    (@{const_syntax App}, tr1'),
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   228
    (@{const_syntax dummy_term}, tr2')]
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   229
end
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   230
*}
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   231
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   232
hide const dummy_term App valapp
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   233
hide (open) const Const termify valtermify term_of term_of_num
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   234
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   235
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   236
subsection {* Evaluation setup *}
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   237
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   238
ML {*
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   239
signature EVAL =
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   240
sig
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   241
  val eval_ref: (unit -> term) option ref
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   242
  val eval_term: theory -> term -> term
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   243
end;
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   244
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   245
structure Eval : EVAL =
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   246
struct
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   247
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   248
val eval_ref = ref (NONE : (unit -> term) option);
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   249
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   250
fun eval_term thy t =
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
   251
  Code_ML.eval NONE ("Eval.eval_ref", eval_ref) I thy (HOLogic.mk_term_of (fastype_of t) t) [];
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   252
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   253
end;
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   254
*}
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   255
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   256
setup {*
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   257
  Value.add_evaluator ("code", Eval.eval_term o ProofContext.theory_of)
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   258
*}
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   259
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   260
end