src/HOL/Imperative_HOL/Heap_Monad.thy
author haftmann
Fri, 16 Jul 2010 13:58:29 +0200
changeset 37842 27e7047d9ae6
parent 37838 28848d338261
child 37845 b70d7a347964
permissions -rw-r--r--
a first sketch for Imperative HOL witht Scala
haftmann@37787
     1
(*  Title:      HOL/Imperative_HOL/Heap_Monad.thy
haftmann@26170
     2
    Author:     John Matthews, Galois Connections; Alexander Krauss, Lukas Bulwahn & Florian Haftmann, TU Muenchen
haftmann@26170
     3
*)
haftmann@26170
     4
haftmann@37771
     5
header {* A monad with a polymorphic heap and primitive reasoning infrastructure *}
haftmann@26170
     6
haftmann@26170
     7
theory Heap_Monad
krauss@37792
     8
imports Heap Monad_Syntax
haftmann@26170
     9
begin
haftmann@26170
    10
haftmann@26170
    11
subsection {* The monad *}
haftmann@26170
    12
haftmann@37757
    13
subsubsection {* Monad construction *}
haftmann@26170
    14
haftmann@26170
    15
text {* Monadic heap actions either produce values
haftmann@26170
    16
  and transform the heap, or fail *}
haftmann@37709
    17
datatype 'a Heap = Heap "heap \<Rightarrow> ('a \<times> heap) option"
haftmann@26170
    18
haftmann@37709
    19
primrec execute :: "'a Heap \<Rightarrow> heap \<Rightarrow> ('a \<times> heap) option" where
haftmann@37709
    20
  [code del]: "execute (Heap f) = f"
haftmann@26170
    21
haftmann@37757
    22
lemma Heap_cases [case_names succeed fail]:
haftmann@37757
    23
  fixes f and h
haftmann@37757
    24
  assumes succeed: "\<And>x h'. execute f h = Some (x, h') \<Longrightarrow> P"
haftmann@37757
    25
  assumes fail: "execute f h = None \<Longrightarrow> P"
haftmann@37757
    26
  shows P
haftmann@37757
    27
  using assms by (cases "execute f h") auto
haftmann@37757
    28
haftmann@26170
    29
lemma Heap_execute [simp]:
haftmann@26170
    30
  "Heap (execute f) = f" by (cases f) simp_all
haftmann@26170
    31
haftmann@26170
    32
lemma Heap_eqI:
haftmann@26170
    33
  "(\<And>h. execute f h = execute g h) \<Longrightarrow> f = g"
haftmann@26170
    34
    by (cases f, cases g) (auto simp: expand_fun_eq)
haftmann@26170
    35
haftmann@37757
    36
ML {* structure Execute_Simps = Named_Thms(
haftmann@37757
    37
  val name = "execute_simps"
haftmann@37757
    38
  val description = "simplification rules for execute"
haftmann@37757
    39
) *}
haftmann@37757
    40
haftmann@37757
    41
setup Execute_Simps.setup
haftmann@37757
    42
haftmann@37787
    43
lemma execute_Let [execute_simps]:
haftmann@37757
    44
  "execute (let x = t in f x) = (let x = t in execute (f x))"
haftmann@37757
    45
  by (simp add: Let_def)
haftmann@37757
    46
haftmann@37757
    47
haftmann@37757
    48
subsubsection {* Specialised lifters *}
haftmann@37757
    49
haftmann@37757
    50
definition tap :: "(heap \<Rightarrow> 'a) \<Rightarrow> 'a Heap" where
haftmann@37757
    51
  [code del]: "tap f = Heap (\<lambda>h. Some (f h, h))"
haftmann@37757
    52
haftmann@37787
    53
lemma execute_tap [execute_simps]:
haftmann@37757
    54
  "execute (tap f) h = Some (f h, h)"
haftmann@37757
    55
  by (simp add: tap_def)
haftmann@26170
    56
haftmann@37709
    57
definition heap :: "(heap \<Rightarrow> 'a \<times> heap) \<Rightarrow> 'a Heap" where
haftmann@37709
    58
  [code del]: "heap f = Heap (Some \<circ> f)"
haftmann@26170
    59
haftmann@37787
    60
lemma execute_heap [execute_simps]:
haftmann@37709
    61
  "execute (heap f) = Some \<circ> f"
haftmann@26170
    62
  by (simp add: heap_def)
haftmann@26170
    63
haftmann@37753
    64
definition guard :: "(heap \<Rightarrow> bool) \<Rightarrow> (heap \<Rightarrow> 'a \<times> heap) \<Rightarrow> 'a Heap" where
haftmann@37753
    65
  [code del]: "guard P f = Heap (\<lambda>h. if P h then Some (f h) else None)"
haftmann@37753
    66
haftmann@37757
    67
lemma execute_guard [execute_simps]:
haftmann@37753
    68
  "\<not> P h \<Longrightarrow> execute (guard P f) h = None"
haftmann@37753
    69
  "P h \<Longrightarrow> execute (guard P f) h = Some (f h)"
haftmann@37753
    70
  by (simp_all add: guard_def)
haftmann@37753
    71
haftmann@37757
    72
haftmann@37757
    73
subsubsection {* Predicate classifying successful computations *}
haftmann@37757
    74
haftmann@37757
    75
definition success :: "'a Heap \<Rightarrow> heap \<Rightarrow> bool" where
haftmann@37757
    76
  "success f h \<longleftrightarrow> execute f h \<noteq> None"
haftmann@37757
    77
haftmann@37757
    78
lemma successI:
haftmann@37757
    79
  "execute f h \<noteq> None \<Longrightarrow> success f h"
haftmann@37757
    80
  by (simp add: success_def)
haftmann@37757
    81
haftmann@37757
    82
lemma successE:
haftmann@37757
    83
  assumes "success f h"
haftmann@37771
    84
  obtains r h' where "r = fst (the (execute c h))"
haftmann@37771
    85
    and "h' = snd (the (execute c h))"
haftmann@37771
    86
    and "execute f h \<noteq> None"
haftmann@37771
    87
  using assms by (simp add: success_def)
haftmann@37757
    88
haftmann@37757
    89
ML {* structure Success_Intros = Named_Thms(
haftmann@37757
    90
  val name = "success_intros"
haftmann@37757
    91
  val description = "introduction rules for success"
haftmann@37757
    92
) *}
haftmann@37757
    93
haftmann@37757
    94
setup Success_Intros.setup
haftmann@37757
    95
haftmann@37787
    96
lemma success_tapI [success_intros]:
haftmann@37757
    97
  "success (tap f) h"
haftmann@37787
    98
  by (rule successI) (simp add: execute_simps)
haftmann@37757
    99
haftmann@37787
   100
lemma success_heapI [success_intros]:
haftmann@37757
   101
  "success (heap f) h"
haftmann@37787
   102
  by (rule successI) (simp add: execute_simps)
haftmann@37757
   103
haftmann@37757
   104
lemma success_guardI [success_intros]:
haftmann@37757
   105
  "P h \<Longrightarrow> success (guard P f) h"
haftmann@37757
   106
  by (rule successI) (simp add: execute_guard)
haftmann@37757
   107
haftmann@37757
   108
lemma success_LetI [success_intros]:
haftmann@37757
   109
  "x = t \<Longrightarrow> success (f x) h \<Longrightarrow> success (let x = t in f x) h"
haftmann@37757
   110
  by (simp add: Let_def)
haftmann@37757
   111
haftmann@37771
   112
lemma success_ifI:
haftmann@37771
   113
  "(c \<Longrightarrow> success t h) \<Longrightarrow> (\<not> c \<Longrightarrow> success e h) \<Longrightarrow>
haftmann@37771
   114
    success (if c then t else e) h"
haftmann@37771
   115
  by (simp add: success_def)
haftmann@37771
   116
haftmann@37771
   117
haftmann@37771
   118
subsubsection {* Predicate for a simple relational calculus *}
haftmann@37771
   119
haftmann@37771
   120
text {*
haftmann@37771
   121
  The @{text crel} predicate states that when a computation @{text c}
haftmann@37771
   122
  runs with the heap @{text h} will result in return value @{text r}
haftmann@37771
   123
  and a heap @{text "h'"}, i.e.~no exception occurs.
haftmann@37771
   124
*}  
haftmann@37771
   125
haftmann@37771
   126
definition crel :: "'a Heap \<Rightarrow> heap \<Rightarrow> heap \<Rightarrow> 'a \<Rightarrow> bool" where
haftmann@37771
   127
  crel_def: "crel c h h' r \<longleftrightarrow> Heap_Monad.execute c h = Some (r, h')"
haftmann@37771
   128
haftmann@37771
   129
lemma crelI:
haftmann@37771
   130
  "Heap_Monad.execute c h = Some (r, h') \<Longrightarrow> crel c h h' r"
haftmann@37771
   131
  by (simp add: crel_def)
haftmann@37771
   132
haftmann@37771
   133
lemma crelE:
haftmann@37771
   134
  assumes "crel c h h' r"
haftmann@37771
   135
  obtains "r = fst (the (execute c h))"
haftmann@37771
   136
    and "h' = snd (the (execute c h))"
haftmann@37771
   137
    and "success c h"
haftmann@37771
   138
proof (rule that)
haftmann@37771
   139
  from assms have *: "execute c h = Some (r, h')" by (simp add: crel_def)
haftmann@37771
   140
  then show "success c h" by (simp add: success_def)
haftmann@37771
   141
  from * have "fst (the (execute c h)) = r" and "snd (the (execute c h)) = h'"
haftmann@37771
   142
    by simp_all
haftmann@37771
   143
  then show "r = fst (the (execute c h))"
haftmann@37771
   144
    and "h' = snd (the (execute c h))" by simp_all
haftmann@37771
   145
qed
haftmann@37771
   146
haftmann@37771
   147
lemma crel_success:
haftmann@37771
   148
  "crel c h h' r \<Longrightarrow> success c h"
haftmann@37771
   149
  by (simp add: crel_def success_def)
haftmann@37771
   150
haftmann@37771
   151
lemma success_crelE:
haftmann@37771
   152
  assumes "success c h"
haftmann@37771
   153
  obtains r h' where "crel c h h' r"
haftmann@37771
   154
  using assms by (auto simp add: crel_def success_def)
haftmann@37771
   155
haftmann@37771
   156
lemma crel_deterministic:
haftmann@37771
   157
  assumes "crel f h h' a"
haftmann@37771
   158
    and "crel f h h'' b"
haftmann@37771
   159
  shows "a = b" and "h' = h''"
haftmann@37771
   160
  using assms unfolding crel_def by auto
haftmann@37771
   161
haftmann@37771
   162
ML {* structure Crel_Intros = Named_Thms(
haftmann@37771
   163
  val name = "crel_intros"
haftmann@37771
   164
  val description = "introduction rules for crel"
haftmann@37771
   165
) *}
haftmann@37771
   166
haftmann@37771
   167
ML {* structure Crel_Elims = Named_Thms(
haftmann@37771
   168
  val name = "crel_elims"
haftmann@37771
   169
  val description = "elimination rules for crel"
haftmann@37771
   170
) *}
haftmann@37771
   171
haftmann@37771
   172
setup "Crel_Intros.setup #> Crel_Elims.setup"
haftmann@37771
   173
haftmann@37771
   174
lemma crel_LetI [crel_intros]:
haftmann@37771
   175
  assumes "x = t" "crel (f x) h h' r"
haftmann@37771
   176
  shows "crel (let x = t in f x) h h' r"
haftmann@37771
   177
  using assms by simp
haftmann@37771
   178
haftmann@37771
   179
lemma crel_LetE [crel_elims]:
haftmann@37771
   180
  assumes "crel (let x = t in f x) h h' r"
haftmann@37771
   181
  obtains "crel (f t) h h' r"
haftmann@37771
   182
  using assms by simp
haftmann@37771
   183
haftmann@37771
   184
lemma crel_ifI:
haftmann@37771
   185
  assumes "c \<Longrightarrow> crel t h h' r"
haftmann@37771
   186
    and "\<not> c \<Longrightarrow> crel e h h' r"
haftmann@37771
   187
  shows "crel (if c then t else e) h h' r"
haftmann@37771
   188
  by (cases c) (simp_all add: assms)
haftmann@37771
   189
haftmann@37771
   190
lemma crel_ifE:
haftmann@37771
   191
  assumes "crel (if c then t else e) h h' r"
haftmann@37771
   192
  obtains "c" "crel t h h' r"
haftmann@37771
   193
    | "\<not> c" "crel e h h' r"
haftmann@37771
   194
  using assms by (cases c) simp_all
haftmann@37771
   195
haftmann@37771
   196
lemma crel_tapI [crel_intros]:
haftmann@37771
   197
  assumes "h' = h" "r = f h"
haftmann@37771
   198
  shows "crel (tap f) h h' r"
haftmann@37787
   199
  by (rule crelI) (simp add: assms execute_simps)
haftmann@37771
   200
haftmann@37771
   201
lemma crel_tapE [crel_elims]:
haftmann@37771
   202
  assumes "crel (tap f) h h' r"
haftmann@37771
   203
  obtains "h' = h" and "r = f h"
haftmann@37787
   204
  using assms by (rule crelE) (auto simp add: execute_simps)
haftmann@37771
   205
haftmann@37771
   206
lemma crel_heapI [crel_intros]:
haftmann@37771
   207
  assumes "h' = snd (f h)" "r = fst (f h)"
haftmann@37771
   208
  shows "crel (heap f) h h' r"
haftmann@37787
   209
  by (rule crelI) (simp add: assms execute_simps)
haftmann@37771
   210
haftmann@37771
   211
lemma crel_heapE [crel_elims]:
haftmann@37771
   212
  assumes "crel (heap f) h h' r"
haftmann@37771
   213
  obtains "h' = snd (f h)" and "r = fst (f h)"
haftmann@37787
   214
  using assms by (rule crelE) (simp add: execute_simps)
haftmann@37771
   215
haftmann@37771
   216
lemma crel_guardI [crel_intros]:
haftmann@37771
   217
  assumes "P h" "h' = snd (f h)" "r = fst (f h)"
haftmann@37771
   218
  shows "crel (guard P f) h h' r"
haftmann@37771
   219
  by (rule crelI) (simp add: assms execute_simps)
haftmann@37771
   220
haftmann@37771
   221
lemma crel_guardE [crel_elims]:
haftmann@37771
   222
  assumes "crel (guard P f) h h' r"
haftmann@37771
   223
  obtains "h' = snd (f h)" "r = fst (f h)" "P h"
haftmann@37771
   224
  using assms by (rule crelE)
haftmann@37771
   225
    (auto simp add: execute_simps elim!: successE, cases "P h", auto simp add: execute_simps)
haftmann@37771
   226
haftmann@37757
   227
haftmann@37757
   228
subsubsection {* Monad combinators *}
haftmann@26170
   229
haftmann@37709
   230
definition return :: "'a \<Rightarrow> 'a Heap" where
haftmann@26170
   231
  [code del]: "return x = heap (Pair x)"
haftmann@26170
   232
haftmann@37787
   233
lemma execute_return [execute_simps]:
haftmann@37709
   234
  "execute (return x) = Some \<circ> Pair x"
haftmann@37787
   235
  by (simp add: return_def execute_simps)
haftmann@26170
   236
haftmann@37787
   237
lemma success_returnI [success_intros]:
haftmann@37757
   238
  "success (return x) h"
haftmann@37787
   239
  by (rule successI) (simp add: execute_simps)
haftmann@37757
   240
haftmann@37771
   241
lemma crel_returnI [crel_intros]:
haftmann@37771
   242
  "h = h' \<Longrightarrow> crel (return x) h h' x"
haftmann@37787
   243
  by (rule crelI) (simp add: execute_simps)
haftmann@37771
   244
haftmann@37771
   245
lemma crel_returnE [crel_elims]:
haftmann@37771
   246
  assumes "crel (return x) h h' r"
haftmann@37771
   247
  obtains "r = x" "h' = h"
haftmann@37787
   248
  using assms by (rule crelE) (simp add: execute_simps)
haftmann@37771
   249
haftmann@37709
   250
definition raise :: "string \<Rightarrow> 'a Heap" where -- {* the string is just decoration *}
haftmann@37709
   251
  [code del]: "raise s = Heap (\<lambda>_. None)"
haftmann@26170
   252
haftmann@37787
   253
lemma execute_raise [execute_simps]:
haftmann@37709
   254
  "execute (raise s) = (\<lambda>_. None)"
haftmann@26170
   255
  by (simp add: raise_def)
haftmann@26170
   256
haftmann@37771
   257
lemma crel_raiseE [crel_elims]:
haftmann@37771
   258
  assumes "crel (raise x) h h' r"
haftmann@37771
   259
  obtains "False"
haftmann@37787
   260
  using assms by (rule crelE) (simp add: success_def execute_simps)
haftmann@37771
   261
krauss@37792
   262
definition bind :: "'a Heap \<Rightarrow> ('a \<Rightarrow> 'b Heap) \<Rightarrow> 'b Heap" where
krauss@37792
   263
  [code del]: "bind f g = Heap (\<lambda>h. case execute f h of
haftmann@37709
   264
                  Some (x, h') \<Rightarrow> execute (g x) h'
haftmann@37709
   265
                | None \<Rightarrow> None)"
haftmann@37709
   266
krauss@37792
   267
setup {*
krauss@37792
   268
  Adhoc_Overloading.add_variant 
haftmann@37816
   269
    @{const_name Monad_Syntax.bind} @{const_name Heap_Monad.bind}
krauss@37792
   270
*}
krauss@37792
   271
haftmann@37757
   272
lemma execute_bind [execute_simps]:
haftmann@37709
   273
  "execute f h = Some (x, h') \<Longrightarrow> execute (f \<guillemotright>= g) h = execute (g x) h'"
haftmann@37709
   274
  "execute f h = None \<Longrightarrow> execute (f \<guillemotright>= g) h = None"
haftmann@37755
   275
  by (simp_all add: bind_def)
haftmann@37709
   276
haftmann@37771
   277
lemma execute_bind_success:
haftmann@37771
   278
  "success f h \<Longrightarrow> execute (f \<guillemotright>= g) h = execute (g (fst (the (execute f h)))) (snd (the (execute f h)))"
haftmann@37771
   279
  by (cases f h rule: Heap_cases) (auto elim!: successE simp add: bind_def)
haftmann@37771
   280
haftmann@37771
   281
lemma success_bind_executeI:
haftmann@37771
   282
  "execute f h = Some (x, h') \<Longrightarrow> success (g x) h' \<Longrightarrow> success (f \<guillemotright>= g) h"
haftmann@37757
   283
  by (auto intro!: successI elim!: successE simp add: bind_def)
haftmann@37757
   284
haftmann@37771
   285
lemma success_bind_crelI [success_intros]:
haftmann@37771
   286
  "crel f h h' x \<Longrightarrow> success (g x) h' \<Longrightarrow> success (f \<guillemotright>= g) h"
haftmann@37771
   287
  by (auto simp add: crel_def success_def bind_def)
haftmann@37771
   288
haftmann@37771
   289
lemma crel_bindI [crel_intros]:
haftmann@37771
   290
  assumes "crel f h h' r" "crel (g r) h' h'' r'"
haftmann@37771
   291
  shows "crel (f \<guillemotright>= g) h h'' r'"
haftmann@37771
   292
  using assms
haftmann@37771
   293
  apply (auto intro!: crelI elim!: crelE successE)
haftmann@37771
   294
  apply (subst execute_bind, simp_all)
haftmann@37771
   295
  done
haftmann@37771
   296
haftmann@37771
   297
lemma crel_bindE [crel_elims]:
haftmann@37771
   298
  assumes "crel (f \<guillemotright>= g) h h'' r'"
haftmann@37771
   299
  obtains h' r where "crel f h h' r" "crel (g r) h' h'' r'"
haftmann@37771
   300
  using assms by (auto simp add: crel_def bind_def split: option.split_asm)
haftmann@37771
   301
haftmann@37771
   302
lemma execute_bind_eq_SomeI:
haftmann@37753
   303
  assumes "Heap_Monad.execute f h = Some (x, h')"
haftmann@37753
   304
    and "Heap_Monad.execute (g x) h' = Some (y, h'')"
haftmann@37753
   305
  shows "Heap_Monad.execute (f \<guillemotright>= g) h = Some (y, h'')"
haftmann@37755
   306
  using assms by (simp add: bind_def)
haftmann@37753
   307
haftmann@37709
   308
lemma return_bind [simp]: "return x \<guillemotright>= f = f x"
haftmann@37787
   309
  by (rule Heap_eqI) (simp add: execute_bind execute_simps)
haftmann@37709
   310
haftmann@37709
   311
lemma bind_return [simp]: "f \<guillemotright>= return = f"
haftmann@37787
   312
  by (rule Heap_eqI) (simp add: bind_def execute_simps split: option.splits)
haftmann@37709
   313
haftmann@37828
   314
lemma bind_bind [simp]: "(f \<guillemotright>= g) \<guillemotright>= k = (f :: 'a Heap) \<guillemotright>= (\<lambda>x. g x \<guillemotright>= k)"
haftmann@37787
   315
  by (rule Heap_eqI) (simp add: bind_def execute_simps split: option.splits)
haftmann@37709
   316
haftmann@37709
   317
lemma raise_bind [simp]: "raise e \<guillemotright>= f = raise e"
haftmann@37787
   318
  by (rule Heap_eqI) (simp add: execute_simps)
haftmann@37709
   319
haftmann@26170
   320
haftmann@37757
   321
subsection {* Generic combinators *}
haftmann@26170
   322
haftmann@37757
   323
subsubsection {* Assertions *}
haftmann@26170
   324
haftmann@37709
   325
definition assert :: "('a \<Rightarrow> bool) \<Rightarrow> 'a \<Rightarrow> 'a Heap" where
haftmann@37709
   326
  "assert P x = (if P x then return x else raise ''assert'')"
haftmann@28742
   327
haftmann@37757
   328
lemma execute_assert [execute_simps]:
haftmann@37753
   329
  "P x \<Longrightarrow> execute (assert P x) h = Some (x, h)"
haftmann@37753
   330
  "\<not> P x \<Longrightarrow> execute (assert P x) h = None"
haftmann@37787
   331
  by (simp_all add: assert_def execute_simps)
haftmann@37753
   332
haftmann@37757
   333
lemma success_assertI [success_intros]:
haftmann@37757
   334
  "P x \<Longrightarrow> success (assert P x) h"
haftmann@37757
   335
  by (rule successI) (simp add: execute_assert)
haftmann@37757
   336
haftmann@37771
   337
lemma crel_assertI [crel_intros]:
haftmann@37771
   338
  "P x \<Longrightarrow> h' = h \<Longrightarrow> r = x \<Longrightarrow> crel (assert P x) h h' r"
haftmann@37771
   339
  by (rule crelI) (simp add: execute_assert)
haftmann@37771
   340
 
haftmann@37771
   341
lemma crel_assertE [crel_elims]:
haftmann@37771
   342
  assumes "crel (assert P x) h h' r"
haftmann@37771
   343
  obtains "P x" "r = x" "h' = h"
haftmann@37771
   344
  using assms by (rule crelE) (cases "P x", simp_all add: execute_assert success_def)
haftmann@37771
   345
haftmann@28742
   346
lemma assert_cong [fundef_cong]:
haftmann@28742
   347
  assumes "P = P'"
haftmann@28742
   348
  assumes "\<And>x. P' x \<Longrightarrow> f x = f' x"
haftmann@28742
   349
  shows "(assert P x >>= f) = (assert P' x >>= f')"
haftmann@37753
   350
  by (rule Heap_eqI) (insert assms, simp add: assert_def)
haftmann@28742
   351
haftmann@37757
   352
haftmann@37757
   353
subsubsection {* Plain lifting *}
haftmann@37757
   354
haftmann@37753
   355
definition lift :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'b Heap" where
haftmann@37753
   356
  "lift f = return o f"
haftmann@37709
   357
haftmann@37753
   358
lemma lift_collapse [simp]:
haftmann@37753
   359
  "lift f x = return (f x)"
haftmann@37753
   360
  by (simp add: lift_def)
haftmann@37709
   361
haftmann@37753
   362
lemma bind_lift:
haftmann@37753
   363
  "(f \<guillemotright>= lift g) = (f \<guillemotright>= (\<lambda>x. return (g x)))"
haftmann@37753
   364
  by (simp add: lift_def comp_def)
haftmann@37709
   365
haftmann@37757
   366
haftmann@37757
   367
subsubsection {* Iteration -- warning: this is rarely useful! *}
haftmann@37757
   368
haftmann@37755
   369
primrec fold_map :: "('a \<Rightarrow> 'b Heap) \<Rightarrow> 'a list \<Rightarrow> 'b list Heap" where
haftmann@37755
   370
  "fold_map f [] = return []"
krauss@37792
   371
| "fold_map f (x # xs) = do {
haftmann@37709
   372
     y \<leftarrow> f x;
haftmann@37755
   373
     ys \<leftarrow> fold_map f xs;
haftmann@37709
   374
     return (y # ys)
krauss@37792
   375
   }"
haftmann@37709
   376
haftmann@37755
   377
lemma fold_map_append:
haftmann@37755
   378
  "fold_map f (xs @ ys) = fold_map f xs \<guillemotright>= (\<lambda>xs. fold_map f ys \<guillemotright>= (\<lambda>ys. return (xs @ ys)))"
haftmann@37753
   379
  by (induct xs) simp_all
haftmann@37753
   380
haftmann@37757
   381
lemma execute_fold_map_unchanged_heap [execute_simps]:
haftmann@37753
   382
  assumes "\<And>x. x \<in> set xs \<Longrightarrow> \<exists>y. execute (f x) h = Some (y, h)"
haftmann@37755
   383
  shows "execute (fold_map f xs) h =
haftmann@37753
   384
    Some (List.map (\<lambda>x. fst (the (execute (f x) h))) xs, h)"
haftmann@37753
   385
using assms proof (induct xs)
haftmann@37787
   386
  case Nil show ?case by (simp add: execute_simps)
haftmann@37753
   387
next
haftmann@37753
   388
  case (Cons x xs)
haftmann@37753
   389
  from Cons.prems obtain y
haftmann@37753
   390
    where y: "execute (f x) h = Some (y, h)" by auto
haftmann@37755
   391
  moreover from Cons.prems Cons.hyps have "execute (fold_map f xs) h =
haftmann@37753
   392
    Some (map (\<lambda>x. fst (the (execute (f x) h))) xs, h)" by auto
haftmann@37787
   393
  ultimately show ?case by (simp, simp only: execute_bind(1), simp add: execute_simps)
haftmann@37753
   394
qed
haftmann@37753
   395
haftmann@26182
   396
subsection {* Code generator setup *}
haftmann@26182
   397
haftmann@26182
   398
subsubsection {* Logical intermediate layer *}
haftmann@26182
   399
haftmann@37709
   400
primrec raise' :: "String.literal \<Rightarrow> 'a Heap" where
haftmann@37709
   401
  [code del, code_post]: "raise' (STR s) = raise s"
haftmann@26182
   402
haftmann@37709
   403
lemma raise_raise' [code_inline]:
haftmann@37709
   404
  "raise s = raise' (STR s)"
haftmann@37709
   405
  by simp
haftmann@26182
   406
haftmann@37709
   407
code_datatype raise' -- {* avoid @{const "Heap"} formally *}
haftmann@26182
   408
haftmann@26182
   409
haftmann@27707
   410
subsubsection {* SML and OCaml *}
haftmann@26182
   411
haftmann@26752
   412
code_type Heap (SML "unit/ ->/ _")
haftmann@37828
   413
code_const bind (SML "!(fn/ f'_/ =>/ fn/ ()/ =>/ f'_/ (_/ ())/ ())")
haftmann@27707
   414
code_const return (SML "!(fn/ ()/ =>/ _)")
haftmann@37709
   415
code_const Heap_Monad.raise' (SML "!(raise/ Fail/ _)")
haftmann@26182
   416
haftmann@37753
   417
code_type Heap (OCaml "unit/ ->/ _")
haftmann@37828
   418
code_const bind (OCaml "!(fun/ f'_/ ()/ ->/ f'_/ (_/ ())/ ())")
haftmann@27707
   419
code_const return (OCaml "!(fun/ ()/ ->/ _)")
haftmann@37828
   420
code_const Heap_Monad.raise' (OCaml "failwith")
haftmann@27707
   421
haftmann@37838
   422
haftmann@37838
   423
subsubsection {* Haskell *}
haftmann@37838
   424
haftmann@37838
   425
text {* Adaption layer *}
haftmann@37838
   426
haftmann@37838
   427
code_include Haskell "Heap"
haftmann@37838
   428
{*import qualified Control.Monad;
haftmann@37838
   429
import qualified Control.Monad.ST;
haftmann@37838
   430
import qualified Data.STRef;
haftmann@37838
   431
import qualified Data.Array.ST;
haftmann@37838
   432
haftmann@37838
   433
type RealWorld = Control.Monad.ST.RealWorld;
haftmann@37838
   434
type ST s a = Control.Monad.ST.ST s a;
haftmann@37838
   435
type STRef s a = Data.STRef.STRef s a;
haftmann@37838
   436
type STArray s a = Data.Array.ST.STArray s Int a;
haftmann@37838
   437
haftmann@37838
   438
newSTRef = Data.STRef.newSTRef;
haftmann@37838
   439
readSTRef = Data.STRef.readSTRef;
haftmann@37838
   440
writeSTRef = Data.STRef.writeSTRef;
haftmann@37838
   441
haftmann@37838
   442
newArray :: Int -> a -> ST s (STArray s a);
haftmann@37838
   443
newArray k = Data.Array.ST.newArray (0, k);
haftmann@37838
   444
haftmann@37838
   445
newListArray :: [a] -> ST s (STArray s a);
haftmann@37838
   446
newListArray xs = Data.Array.ST.newListArray (0, length xs) xs;
haftmann@37838
   447
haftmann@37838
   448
newFunArray :: Int -> (Int -> a) -> ST s (STArray s a);
haftmann@37838
   449
newFunArray k f = Data.Array.ST.newListArray (0, k) (map f [0..k-1]);
haftmann@37838
   450
haftmann@37838
   451
lengthArray :: STArray s a -> ST s Int;
haftmann@37838
   452
lengthArray a = Control.Monad.liftM snd (Data.Array.ST.getBounds a);
haftmann@37838
   453
haftmann@37838
   454
readArray :: STArray s a -> Int -> ST s a;
haftmann@37838
   455
readArray = Data.Array.ST.readArray;
haftmann@37838
   456
haftmann@37838
   457
writeArray :: STArray s a -> Int -> a -> ST s ();
haftmann@37838
   458
writeArray = Data.Array.ST.writeArray;*}
haftmann@37838
   459
haftmann@37838
   460
code_reserved Haskell Heap
haftmann@37838
   461
haftmann@37838
   462
text {* Monad *}
haftmann@37838
   463
haftmann@37838
   464
code_type Heap (Haskell "Heap.ST/ Heap.RealWorld/ _")
haftmann@37838
   465
code_monad bind Haskell
haftmann@37838
   466
code_const return (Haskell "return")
haftmann@37838
   467
code_const Heap_Monad.raise' (Haskell "error")
haftmann@37838
   468
haftmann@37838
   469
haftmann@37838
   470
subsubsection {* Scala *}
haftmann@37838
   471
haftmann@37842
   472
code_include Scala "Heap"
haftmann@37842
   473
{*def bind[A, B](f: Unit => A, g: A => Unit => B): Unit => B = (_: Unit) => g (f ()) ()
haftmann@37842
   474
haftmann@37842
   475
class Ref[A](x: A) {
haftmann@37842
   476
  var value = x
haftmann@37842
   477
}
haftmann@37842
   478
haftmann@37842
   479
object Ref {
haftmann@37842
   480
  def apply[A](x: A): Ref[A] = new Ref[A](x)
haftmann@37842
   481
}
haftmann@37842
   482
haftmann@37842
   483
def lookup[A](r: Ref[A]): A = r.value
haftmann@37842
   484
haftmann@37842
   485
def update[A](r: Ref[A], x: A): Unit = { r.value = x }*}
haftmann@37838
   486
haftmann@37838
   487
code_reserved Scala Heap
haftmann@37838
   488
haftmann@37838
   489
code_type Heap (Scala "Unit/ =>/ _")
haftmann@37842
   490
code_const bind (Scala "!Heap.bind((_), (_))")
haftmann@37842
   491
code_const return (Scala "('_: Unit)/ =>/ _")
haftmann@37838
   492
code_const Heap_Monad.raise' (Scala "!error(_)")
haftmann@37838
   493
haftmann@37838
   494
haftmann@37838
   495
subsubsection {* Target variants with less units *}
haftmann@37838
   496
haftmann@31870
   497
setup {*
haftmann@27707
   498
haftmann@31870
   499
let
haftmann@27707
   500
haftmann@31870
   501
open Code_Thingol;
haftmann@27707
   502
haftmann@31870
   503
fun imp_program naming =
haftmann@31870
   504
haftmann@31870
   505
  let
haftmann@31870
   506
    fun is_const c = case lookup_const naming c
haftmann@31870
   507
     of SOME c' => (fn c'' => c' = c'')
haftmann@31870
   508
      | NONE => K false;
haftmann@37755
   509
    val is_bind = is_const @{const_name bind};
haftmann@31870
   510
    val is_return = is_const @{const_name return};
haftmann@31893
   511
    val dummy_name = "";
haftmann@31870
   512
    val dummy_type = ITyVar dummy_name;
haftmann@31893
   513
    val dummy_case_term = IVar NONE;
haftmann@31870
   514
    (*assumption: dummy values are not relevant for serialization*)
haftmann@31870
   515
    val unitt = case lookup_const naming @{const_name Unity}
haftmann@31870
   516
     of SOME unit' => IConst (unit', (([], []), []))
haftmann@31870
   517
      | NONE => error ("Must include " ^ @{const_name Unity} ^ " in generated constants.");
haftmann@31870
   518
    fun dest_abs ((v, ty) `|=> t, _) = ((v, ty), t)
haftmann@31870
   519
      | dest_abs (t, ty) =
haftmann@31870
   520
          let
haftmann@31870
   521
            val vs = fold_varnames cons t [];
haftmann@31870
   522
            val v = Name.variant vs "x";
haftmann@31870
   523
            val ty' = (hd o fst o unfold_fun) ty;
haftmann@31893
   524
          in ((SOME v, ty'), t `$ IVar (SOME v)) end;
haftmann@31870
   525
    fun force (t as IConst (c, _) `$ t') = if is_return c
haftmann@31870
   526
          then t' else t `$ unitt
haftmann@31870
   527
      | force t = t `$ unitt;
haftmann@31870
   528
    fun tr_bind' [(t1, _), (t2, ty2)] =
haftmann@31870
   529
      let
haftmann@31870
   530
        val ((v, ty), t) = dest_abs (t2, ty2);
haftmann@31870
   531
      in ICase (((force t1, ty), [(IVar v, tr_bind'' t)]), dummy_case_term) end
haftmann@31870
   532
    and tr_bind'' t = case unfold_app t
haftmann@37753
   533
         of (IConst (c, (_, ty1 :: ty2 :: _)), [x1, x2]) => if is_bind c
haftmann@31870
   534
              then tr_bind' [(x1, ty1), (x2, ty2)]
haftmann@31870
   535
              else force t
haftmann@31870
   536
          | _ => force t;
haftmann@31893
   537
    fun imp_monad_bind'' ts = (SOME dummy_name, dummy_type) `|=> ICase (((IVar (SOME dummy_name), dummy_type),
haftmann@31870
   538
      [(unitt, tr_bind' ts)]), dummy_case_term)
haftmann@37753
   539
    and imp_monad_bind' (const as (c, (_, tys))) ts = if is_bind c then case (ts, tys)
haftmann@31870
   540
       of ([t1, t2], ty1 :: ty2 :: _) => imp_monad_bind'' [(t1, ty1), (t2, ty2)]
haftmann@31870
   541
        | ([t1, t2, t3], ty1 :: ty2 :: _) => imp_monad_bind'' [(t1, ty1), (t2, ty2)] `$ t3
haftmann@31870
   542
        | (ts, _) => imp_monad_bind (eta_expand 2 (const, ts))
haftmann@31870
   543
      else IConst const `$$ map imp_monad_bind ts
haftmann@31870
   544
    and imp_monad_bind (IConst const) = imp_monad_bind' const []
haftmann@31870
   545
      | imp_monad_bind (t as IVar _) = t
haftmann@31870
   546
      | imp_monad_bind (t as _ `$ _) = (case unfold_app t
haftmann@31870
   547
         of (IConst const, ts) => imp_monad_bind' const ts
haftmann@31870
   548
          | (t, ts) => imp_monad_bind t `$$ map imp_monad_bind ts)
haftmann@31870
   549
      | imp_monad_bind (v_ty `|=> t) = v_ty `|=> imp_monad_bind t
haftmann@31870
   550
      | imp_monad_bind (ICase (((t, ty), pats), t0)) = ICase
haftmann@31870
   551
          (((imp_monad_bind t, ty),
haftmann@31870
   552
            (map o pairself) imp_monad_bind pats),
haftmann@31870
   553
              imp_monad_bind t0);
haftmann@31870
   554
haftmann@31870
   555
  in (Graph.map_nodes o map_terms_stmt) imp_monad_bind end;
haftmann@27707
   556
haftmann@27707
   557
in
haftmann@27707
   558
haftmann@31870
   559
Code_Target.extend_target ("SML_imp", ("SML", imp_program))
haftmann@31870
   560
#> Code_Target.extend_target ("OCaml_imp", ("OCaml", imp_program))
haftmann@37838
   561
#> Code_Target.extend_target ("Scala_imp", ("Scala", imp_program))
haftmann@27707
   562
haftmann@27707
   563
end
haftmann@31870
   564
haftmann@27707
   565
*}
haftmann@27707
   566
haftmann@26182
   567
haftmann@37757
   568
hide_const (open) Heap heap guard raise' fold_map
haftmann@37721
   569
haftmann@26170
   570
end