src/HOL/Code_Evaluation.thy
author bulwahn
Wed, 20 Jan 2010 11:56:45 +0100
changeset 34948 2d5f2a9f7601
parent 34028 1e6206763036
child 35299 4f4d5bf4ea08
permissions -rw-r--r--
refactoring the predicate compiler; adding theories for Sequences; adding retrieval to Spec_Rules; adding timing to Quickcheck
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
32657
5f13912245ff Code_Eval(uation)
haftmann
parents: 32371
diff changeset
     1
(*  Title:      HOL/Code_Evaluation.thy
28228
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
32657
5f13912245ff Code_Eval(uation)
haftmann
parents: 32371
diff changeset
     7
theory Code_Evaluation
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
32344
55ca0df19af5 more appropriate printing of function terms
haftmann
parents: 32069
diff changeset
    42
instantiation "fun" :: (typerep, typerep) term_of
55ca0df19af5 more appropriate printing of function terms
haftmann
parents: 32069
diff changeset
    43
begin
55ca0df19af5 more appropriate printing of function terms
haftmann
parents: 32069
diff changeset
    44
55ca0df19af5 more appropriate printing of function terms
haftmann
parents: 32069
diff changeset
    45
definition
55ca0df19af5 more appropriate printing of function terms
haftmann
parents: 32069
diff changeset
    46
  "term_of (f \<Colon> 'a \<Rightarrow> 'b) = Const (STR ''dummy_pattern'') (Typerep.Typerep (STR ''fun'')
55ca0df19af5 more appropriate printing of function terms
haftmann
parents: 32069
diff changeset
    47
     [Typerep.typerep TYPE('a), Typerep.typerep TYPE('b)])"
55ca0df19af5 more appropriate printing of function terms
haftmann
parents: 32069
diff changeset
    48
55ca0df19af5 more appropriate printing of function terms
haftmann
parents: 32069
diff changeset
    49
instance ..
55ca0df19af5 more appropriate printing of function terms
haftmann
parents: 32069
diff changeset
    50
55ca0df19af5 more appropriate printing of function terms
haftmann
parents: 32069
diff changeset
    51
end
55ca0df19af5 more appropriate printing of function terms
haftmann
parents: 32069
diff changeset
    52
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    53
setup {*
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    54
let
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    55
  fun add_term_of tyco raw_vs thy =
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    56
    let
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    57
      val vs = map (fn (v, _) => (v, @{sort typerep})) raw_vs;
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    58
      val ty = Type (tyco, map TFree vs);
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    59
      val lhs = Const (@{const_name term_of}, ty --> @{typ term})
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    60
        $ Free ("x", ty);
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    61
      val rhs = @{term "undefined \<Colon> term"};
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    62
      val eq = HOLogic.mk_Trueprop (HOLogic.mk_eq (lhs, rhs));
28243
84d90ec67059 moved term_of syntax to separate theory
haftmann
parents: 28228
diff changeset
    63
      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
    64
        o HOLogic.dest_eq o HOLogic.dest_Trueprop) t ^ "_triv";
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    65
    in
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    66
      thy
33553
35f2b30593a8 modernized structure Theory_Target;
wenzelm
parents: 33473
diff changeset
    67
      |> Theory_Target.instantiation ([tyco], vs, @{sort term_of})
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    68
      |> `(fn lthy => Syntax.check_term lthy eq)
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28952
diff changeset
    69
      |-> (fn eq => Specification.definition (NONE, ((Binding.name (triv_name_of eq), []), eq)))
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    70
      |> snd
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    71
      |> Class.prove_instantiation_exit (K (Class.intro_classes_tac []))
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    72
    end;
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    73
  fun ensure_term_of (tyco, (raw_vs, _)) thy =
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    74
    let
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    75
      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
    76
        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
    77
    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
    78
in
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    79
  Code.type_interpretation ensure_term_of
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    80
end
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    81
*}
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    82
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    83
setup {*
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    84
let
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    85
  fun mk_term_of_eq thy ty vs tyco (c, tys) =
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    86
    let
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    87
      val t = list_comb (Const (c, tys ---> ty),
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    88
        map Free (Name.names Name.context "a" tys));
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    89
      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
    90
        (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
    91
      val cty = Thm.ctyp_of thy ty;
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    92
    in
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    93
      @{thm term_of_anything}
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    94
      |> Drule.instantiate' [SOME cty] [SOME arg, SOME rhs]
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    95
      |> Thm.varifyT
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    96
    end;
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
    97
  fun add_term_of_code tyco raw_vs raw_cs thy =
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    98
    let
31746
75fe3304015c code equation observes default sort constraints for types
haftmann
parents: 31594
diff changeset
    99
      val algebra = Sign.classes_of thy;
75fe3304015c code equation observes default sort constraints for types
haftmann
parents: 31594
diff changeset
   100
      val vs = map (fn (v, sort) =>
75fe3304015c code equation observes default sort constraints for types
haftmann
parents: 31594
diff changeset
   101
        (v, curry (Sorts.inter_sort algebra) @{sort typerep} sort)) raw_vs;
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
   102
      val ty = Type (tyco, map TFree vs);
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
   103
      val cs = (map o apsnd o map o map_atyps)
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
   104
        (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
   105
      val const = AxClass.param_of_inst thy (@{const_name term_of}, tyco);
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
   106
      val eqs = map (mk_term_of_eq thy ty vs tyco) cs;
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
   107
   in
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
   108
      thy
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
   109
      |> Code.del_eqns const
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
   110
      |> fold Code.add_eqn eqs
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
   111
    end;
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
   112
  fun ensure_term_of_code (tyco, (raw_vs, cs)) thy =
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
   113
    let
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
   114
      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
   115
    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
   116
in
31139
0b615ac7eeaf tuned construction of term_of instances
haftmann
parents: 31048
diff changeset
   117
  Code.type_interpretation ensure_term_of_code
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   118
end
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   119
*}
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   120
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   121
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   122
subsubsection {* Code generator setup *}
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   123
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28394
diff changeset
   124
lemmas [code del] = term.recs term.cases term.size
4e74209f113e `code func` now just `code`
haftmann
parents: 28394
diff changeset
   125
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
   126
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28394
diff changeset
   127
lemma [code, code del]: "(term_of \<Colon> typerep \<Rightarrow> term) = term_of" ..
4e74209f113e `code func` now just `code`
haftmann
parents: 28394
diff changeset
   128
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
   129
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
   130
lemma [code, code del]:
32657
5f13912245ff Code_Eval(uation)
haftmann
parents: 32371
diff changeset
   131
  "(Code_Evaluation.term_of \<Colon> 'a::{type, term_of} Predicate.pred \<Rightarrow> Code_Evaluation.term) = Code_Evaluation.term_of" ..
30427
dfd31c1db060 delete code equations for types pred and seq
haftmann
parents: 29575
diff changeset
   132
lemma [code, code del]:
32657
5f13912245ff Code_Eval(uation)
haftmann
parents: 32371
diff changeset
   133
  "(Code_Evaluation.term_of \<Colon> 'a::{type, term_of} Predicate.seq \<Rightarrow> Code_Evaluation.term) = Code_Evaluation.term_of" ..
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   134
32657
5f13912245ff Code_Eval(uation)
haftmann
parents: 32371
diff changeset
   135
lemma term_of_char [unfolded typerep_fun_def typerep_char_def typerep_nibble_def, code]: "Code_Evaluation.term_of c =
28243
84d90ec67059 moved term_of syntax to separate theory
haftmann
parents: 28228
diff changeset
   136
    (let (n, m) = nibble_pair_of_char c
32657
5f13912245ff Code_Eval(uation)
haftmann
parents: 32371
diff changeset
   137
  in Code_Evaluation.App (Code_Evaluation.App (Code_Evaluation.Const (STR ''String.char.Char'') (TYPEREP(nibble \<Rightarrow> nibble \<Rightarrow> char)))
5f13912245ff Code_Eval(uation)
haftmann
parents: 32371
diff changeset
   138
    (Code_Evaluation.term_of n)) (Code_Evaluation.term_of m))"
28243
84d90ec67059 moved term_of syntax to separate theory
haftmann
parents: 28228
diff changeset
   139
  by (subst term_of_anything) rule 
84d90ec67059 moved term_of syntax to separate theory
haftmann
parents: 28228
diff changeset
   140
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   141
code_type "term"
31031
cbec39ebf8f2 class typerep inherits from type
haftmann
parents: 30970
diff changeset
   142
  (Eval "Term.term")
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   143
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   144
code_const Const and App
31594
a94aa5f045fb less brackets
haftmann
parents: 31205
diff changeset
   145
  (Eval "Term.Const/ ((_), (_))" and "Term.$/ ((_), (_))")
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   146
31205
98370b26c2ce String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents: 31203
diff changeset
   147
code_const "term_of \<Colon> String.literal \<Rightarrow> term"
33632
6ea8a4cce9e7 repaired broken code_const for term_of [String.literal]
haftmann
parents: 33553
diff changeset
   148
  (Eval "HOLogic.mk'_literal")
31048
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31031
diff changeset
   149
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31031
diff changeset
   150
code_reserved Eval HOLogic
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   151
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   152
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   153
subsubsection {* Syntax *}
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   154
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   155
definition termify :: "'a \<Rightarrow> term" where
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   156
  [code del]: "termify x = dummy_term"
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   157
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   158
abbreviation valtermify :: "'a \<Rightarrow> 'a \<times> (unit \<Rightarrow> term)" where
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   159
  "valtermify x \<equiv> (x, \<lambda>u. termify x)"
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   160
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   161
setup {*
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   162
let
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   163
  fun map_default f xs =
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   164
    let val ys = map f xs
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   165
    in if exists is_some ys
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   166
      then SOME (map2 the_default xs ys)
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   167
      else NONE
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   168
    end;
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   169
  fun subst_termify_app (Const (@{const_name termify}, T), [t]) =
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   170
        if not (Term.has_abs t)
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   171
        then if fold_aterms (fn Const _ => I | _ => K false) t true
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   172
          then SOME (HOLogic.reflect_term t)
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   173
          else error "Cannot termify expression containing variables"
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   174
        else error "Cannot termify expression containing abstraction"
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   175
    | subst_termify_app (t, ts) = case map_default subst_termify ts
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   176
       of SOME ts' => SOME (list_comb (t, ts'))
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   177
        | NONE => NONE
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   178
  and subst_termify (Abs (v, T, t)) = (case subst_termify t
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   179
       of SOME t' => SOME (Abs (v, T, t'))
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   180
        | NONE => NONE)
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   181
    | subst_termify t = subst_termify_app (strip_comb t) 
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   182
  fun check_termify ts ctxt = map_default subst_termify ts
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   183
    |> Option.map (rpair ctxt)
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   184
in
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   185
  Context.theory_map (Syntax.add_term_check 0 "termify" check_termify)
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   186
end;
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   187
*}
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   188
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   189
locale term_syntax
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   190
begin
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   191
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   192
notation App (infixl "<\<cdot>>" 70)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   193
  and valapp (infixl "{\<cdot>}" 70)
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   194
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   195
end
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   196
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   197
interpretation term_syntax .
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   198
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   199
no_notation App (infixl "<\<cdot>>" 70)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   200
  and valapp (infixl "{\<cdot>}" 70)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   201
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   202
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   203
subsection {* Numeric types *}
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   204
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   205
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
   206
  "term_of_num two = (\<lambda>_. dummy_term)"
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_num_code [code]:
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   209
  "term_of_num two k = (if k = 0 then termify Int.Pls
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   210
    else (if k mod two = 0
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   211
      then termify Int.Bit0 <\<cdot>> term_of_num two (k div two)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   212
      else termify Int.Bit1 <\<cdot>> term_of_num two (k div two)))"
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   213
  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
   214
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   215
lemma (in term_syntax) term_of_nat_code [code]:
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   216
  "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
   217
  by (simp only: term_of_anything)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   218
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   219
lemma (in term_syntax) term_of_int_code [code]:
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   220
  "term_of (k::int) = (if k = 0 then termify (0 :: int)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   221
    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
   222
      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
   223
  by (simp only: term_of_anything)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   224
31205
98370b26c2ce String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents: 31203
diff changeset
   225
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
   226
  "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
   227
  by (simp only: term_of_anything)
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   228
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   229
subsection {* Obfuscate *}
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   230
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   231
print_translation {*
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   232
let
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   233
  val term = Const ("<TERM>", dummyT);
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   234
  fun tr1' [_, _] = term;
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   235
  fun tr2' [] = term;
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   236
in
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   237
  [(@{const_syntax Const}, tr1'),
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   238
    (@{const_syntax App}, tr1'),
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   239
    (@{const_syntax dummy_term}, tr2')]
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   240
end
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   241
*}
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   242
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   243
hide const dummy_term App valapp
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   244
hide (open) const Const termify valtermify term_of term_of_num
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   245
33473
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   246
subsection {* Tracing of generated and evaluated code *}
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   247
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   248
definition tracing :: "String.literal => 'a => 'a"
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   249
where
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   250
  [code del]: "tracing s x = x"
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   251
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   252
ML {*
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   253
structure Code_Evaluation =
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   254
struct
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   255
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   256
fun tracing s x = (Output.tracing s; x)
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   257
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   258
end
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   259
*}
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   260
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   261
code_const "tracing :: String.literal => 'a => 'a"
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   262
  (Eval "Code'_Evaluation.tracing")
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   263
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   264
hide (open) const tracing
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   265
code_reserved Eval Code_Evaluation
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   266
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   267
subsection {* Evaluation setup *}
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   268
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   269
ML {*
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   270
signature EVAL =
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   271
sig
32740
9dd0a2f83429 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32657
diff changeset
   272
  val eval_ref: (unit -> term) option Unsynchronized.ref
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   273
  val eval_term: theory -> term -> term
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   274
end;
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   275
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   276
structure Eval : EVAL =
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   277
struct
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   278
32740
9dd0a2f83429 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32657
diff changeset
   279
val eval_ref = Unsynchronized.ref (NONE : (unit -> term) option);
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   280
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   281
fun eval_term thy t =
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33632
diff changeset
   282
  Code_Eval.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
   283
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   284
end;
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   285
*}
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   286
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   287
setup {*
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   288
  Value.add_evaluator ("code", Eval.eval_term o ProofContext.theory_of)
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   289
*}
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   290
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   291
end