src/HOL/Code_Evaluation.thy
author haftmann
Thu, 18 Nov 2010 17:01:15 +0100
changeset 40602 91e583511113
parent 39567 5ee997fbe5cc
child 40638 6b137c96df07
permissions -rw-r--r--
map_fun combinator in theory Fun
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
39564
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
     9
uses ("Tools/code_evaluation.ML")
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    10
begin
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    11
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    12
subsection {* Term representation *}
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    13
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    14
subsubsection {* Terms and class @{text term_of} *}
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    15
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    16
datatype "term" = dummy_term
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    17
31205
98370b26c2ce String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents: 31203
diff changeset
    18
definition Const :: "String.literal \<Rightarrow> typerep \<Rightarrow> term" where
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    19
  "Const _ _ = dummy_term"
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    20
28661
a287d0e8aa9d slightly tuned
haftmann
parents: 28562
diff changeset
    21
definition App :: "term \<Rightarrow> term \<Rightarrow> term" where
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    22
  "App _ _ = dummy_term"
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    23
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    24
code_datatype Const App
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    25
28335
25326092cf9a renamed rtype to typerep
haftmann
parents: 28313
diff changeset
    26
class term_of = typerep +
31031
cbec39ebf8f2 class typerep inherits from type
haftmann
parents: 30970
diff changeset
    27
  fixes term_of :: "'a \<Rightarrow> term"
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    28
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    29
lemma term_of_anything: "term_of x \<equiv> t"
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    30
  by (rule eq_reflection) (cases "term_of x", cases t, simp)
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    31
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
    32
definition valapp :: "('a \<Rightarrow> 'b) \<times> (unit \<Rightarrow> term)
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
    33
  \<Rightarrow> 'a \<times> (unit \<Rightarrow> term) \<Rightarrow> 'b \<times> (unit \<Rightarrow> term)" where
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
    34
  "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
    35
32069
6d28bbd33e2c prefer code_inline over code_unfold; use code_unfold_post where appropriate
haftmann
parents: 31998
diff changeset
    36
lemma valapp_code [code, code_unfold]:
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
    37
  "valapp (f, tf) (x, tx) = (f x, \<lambda>u. App (tf ()) (tx ()))"
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
    38
  by (simp only: valapp_def fst_conv snd_conv)
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
    39
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
    40
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
    41
subsubsection {* Syntax *}
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
    42
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
    43
definition termify :: "'a \<Rightarrow> term" where
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
    44
  [code del]: "termify x = dummy_term"
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
    45
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
    46
abbreviation valtermify :: "'a \<Rightarrow> 'a \<times> (unit \<Rightarrow> term)" where
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
    47
  "valtermify x \<equiv> (x, \<lambda>u. termify x)"
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
    48
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
    49
locale term_syntax
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
    50
begin
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
    51
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
    52
notation App (infixl "<\<cdot>>" 70)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
    53
  and valapp (infixl "{\<cdot>}" 70)
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
    54
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
    55
end
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
    56
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
    57
interpretation term_syntax .
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
    58
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
    59
no_notation App (infixl "<\<cdot>>" 70)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
    60
  and valapp (infixl "{\<cdot>}" 70)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
    61
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
    62
39564
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    63
subsection {* Tools setup and evaluation *}
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    64
39567
5ee997fbe5cc dynamic_eval_conv static_eval_conv: certification of previously unreliably reconstructed evaluated term
haftmann
parents: 39564
diff changeset
    65
lemma eq_eq_TrueD:
5ee997fbe5cc dynamic_eval_conv static_eval_conv: certification of previously unreliably reconstructed evaluated term
haftmann
parents: 39564
diff changeset
    66
  assumes "(x \<equiv> y) \<equiv> Trueprop True"
5ee997fbe5cc dynamic_eval_conv static_eval_conv: certification of previously unreliably reconstructed evaluated term
haftmann
parents: 39564
diff changeset
    67
  shows "x \<equiv> y"
5ee997fbe5cc dynamic_eval_conv static_eval_conv: certification of previously unreliably reconstructed evaluated term
haftmann
parents: 39564
diff changeset
    68
  using assms by simp
5ee997fbe5cc dynamic_eval_conv static_eval_conv: certification of previously unreliably reconstructed evaluated term
haftmann
parents: 39564
diff changeset
    69
39564
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    70
use "Tools/code_evaluation.ML"
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    71
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    72
code_reserved Eval Code_Evaluation
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    73
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    74
setup {* Code_Evaluation.setup *}
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    75
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    76
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    77
subsection {* @{text term_of} instances *}
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    78
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    79
instantiation "fun" :: (typerep, typerep) term_of
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    80
begin
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    81
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    82
definition
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    83
  "term_of (f \<Colon> 'a \<Rightarrow> 'b) = Const (STR ''dummy_pattern'') (Typerep.Typerep (STR ''fun'')
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    84
     [Typerep.typerep TYPE('a), Typerep.typerep TYPE('b)])"
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    85
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    86
instance ..
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    87
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    88
end
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    89
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    90
instantiation String.literal :: term_of
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    91
begin
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    92
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    93
definition
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    94
  "term_of s = App (Const (STR ''STR'')
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    95
    (Typerep.Typerep (STR ''fun'') [Typerep.Typerep (STR ''list'') [Typerep.Typerep (STR ''char'') []],
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    96
      Typerep.Typerep (STR ''String.literal'') []])) (term_of (String.explode s))"
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    97
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    98
instance ..
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
    99
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   100
end
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   101
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   102
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   103
subsubsection {* Code generator setup *}
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   104
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   105
lemmas [code del] = term.recs term.cases term.size
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   106
lemma [code, code del]: "HOL.equal (t1\<Colon>term) t2 \<longleftrightarrow> HOL.equal t1 t2" ..
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   107
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   108
lemma [code, code del]: "(term_of \<Colon> typerep \<Rightarrow> term) = term_of" ..
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   109
lemma [code, code del]: "(term_of \<Colon> term \<Rightarrow> term) = term_of" ..
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   110
lemma [code, code del]: "(term_of \<Colon> String.literal \<Rightarrow> term) = term_of" ..
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   111
lemma [code, code del]: "(Code_Evaluation.term_of \<Colon> 'a::{type, term_of} Predicate.pred \<Rightarrow> Code_Evaluation.term)
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   112
  = Code_Evaluation.term_of" ..
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   113
lemma [code, code del]: "(Code_Evaluation.term_of \<Colon> 'a::{type, term_of} Predicate.seq \<Rightarrow> Code_Evaluation.term)
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   114
  = Code_Evaluation.term_of" ..
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   115
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   116
lemma term_of_char [unfolded typerep_fun_def typerep_char_def typerep_nibble_def, code]:
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   117
  "Code_Evaluation.term_of c =
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   118
    (let (n, m) = nibble_pair_of_char c
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   119
  in Code_Evaluation.App (Code_Evaluation.App
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   120
    (Code_Evaluation.Const (STR ''String.char.Char'') (TYPEREP(nibble \<Rightarrow> nibble \<Rightarrow> char)))
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   121
      (Code_Evaluation.term_of n)) (Code_Evaluation.term_of m))"
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   122
  by (subst term_of_anything) rule 
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   123
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   124
code_type "term"
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   125
  (Eval "Term.term")
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   126
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   127
code_const Const and App
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   128
  (Eval "Term.Const/ ((_), (_))" and "Term.$/ ((_), (_))")
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   129
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   130
code_const "term_of \<Colon> String.literal \<Rightarrow> term"
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   131
  (Eval "HOLogic.mk'_literal")
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   132
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   133
code_reserved Eval HOLogic
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   134
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   135
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   136
subsubsection {* Numeric types *}
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   137
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   138
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
   139
  "term_of_num two = (\<lambda>_. dummy_term)"
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   140
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   141
lemma (in term_syntax) term_of_num_code [code]:
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   142
  "term_of_num two k = (if k = 0 then termify Int.Pls
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   143
    else (if k mod two = 0
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   144
      then termify Int.Bit0 <\<cdot>> term_of_num two (k div two)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   145
      else termify Int.Bit1 <\<cdot>> term_of_num two (k div two)))"
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   146
  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
   147
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   148
lemma (in term_syntax) term_of_nat_code [code]:
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   149
  "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
   150
  by (simp only: term_of_anything)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   151
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   152
lemma (in term_syntax) term_of_int_code [code]:
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   153
  "term_of (k::int) = (if k = 0 then termify (0 :: int)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   154
    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
   155
      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
   156
  by (simp only: term_of_anything)
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   157
31205
98370b26c2ce String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents: 31203
diff changeset
   158
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
   159
  "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
   160
  by (simp only: term_of_anything)
31191
7733125bac3c tuned term input syntax
haftmann
parents: 31178
diff changeset
   161
39387
6608c4838ff9 replaced ML_Context.evaluate by ML_Context.value -- using context data instead of bare metal references; tuned structures
haftmann
parents: 39274
diff changeset
   162
39564
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   163
subsubsection {* Obfuscation *}
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   164
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   165
print_translation {*
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   166
let
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   167
  val term = Const ("<TERM>", dummyT);
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   168
  fun tr1' [_, _] = term;
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   169
  fun tr2' [] = term;
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   170
in
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   171
  [(@{const_syntax Const}, tr1'),
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   172
    (@{const_syntax App}, tr1'),
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   173
    (@{const_syntax dummy_term}, tr2')]
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   174
end
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   175
*}
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   176
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   177
39564
acfd10e38e80 Factored out ML into separate file
haftmann
parents: 39471
diff changeset
   178
subsection {* Diagnostic *}
39387
6608c4838ff9 replaced ML_Context.evaluate by ML_Context.value -- using context data instead of bare metal references; tuned structures
haftmann
parents: 39274
diff changeset
   179
6608c4838ff9 replaced ML_Context.evaluate by ML_Context.value -- using context data instead of bare metal references; tuned structures
haftmann
parents: 39274
diff changeset
   180
definition tracing :: "String.literal \<Rightarrow> 'a \<Rightarrow> 'a" where
6608c4838ff9 replaced ML_Context.evaluate by ML_Context.value -- using context data instead of bare metal references; tuned structures
haftmann
parents: 39274
diff changeset
   181
  [code del]: "tracing s x = x"
6608c4838ff9 replaced ML_Context.evaluate by ML_Context.value -- using context data instead of bare metal references; tuned structures
haftmann
parents: 39274
diff changeset
   182
33473
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   183
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
   184
  (Eval "Code'_Evaluation.tracing")
3b275a0bf18c adding tracing function for evaluated code; annotated compilation in the predicate compiler
bulwahn
parents: 32740
diff changeset
   185
31178
27afaaa6547a syntax support for term expressions
haftmann
parents: 31144
diff changeset
   186
39387
6608c4838ff9 replaced ML_Context.evaluate by ML_Context.value -- using context data instead of bare metal references; tuned structures
haftmann
parents: 39274
diff changeset
   187
hide_const dummy_term App valapp
6608c4838ff9 replaced ML_Context.evaluate by ML_Context.value -- using context data instead of bare metal references; tuned structures
haftmann
parents: 39274
diff changeset
   188
hide_const (open) Const termify valtermify term_of term_of_num tracing
28228
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   189
7ebe8dc06cbb evaluation using code generator
haftmann
parents:
diff changeset
   190
end