| author | haftmann | 
| Thu, 20 May 2010 16:40:29 +0200 | |
| changeset 37024 | e938a0b5286e | 
| parent 35416 | d8d7d1b785af | 
| child 40077 | c8a9eaaa2f59 | 
| permissions | -rw-r--r-- | 
| 12951 | 1 | (* Title: HOL/MicroJava/BV/BVExample.thy | 
| 2 | Author: Gerwin Klein | |
| 3 | *) | |
| 4 | ||
| 12972 | 5 | header {* \isaheader{Example Welltypings}\label{sec:BVExample} *}
 | 
| 12951 | 6 | |
| 23022 
9872ef956276
added qualification for ambiguous definition names
 haftmann parents: 
22271diff
changeset | 7 | theory BVExample | 
| 24351 | 8 | imports "../JVM/JVMListExample" BVSpecTypeSafe JVM Executable_Set | 
| 23022 
9872ef956276
added qualification for ambiguous definition names
 haftmann parents: 
22271diff
changeset | 9 | begin | 
| 12951 | 10 | |
| 12972 | 11 | text {*
 | 
| 12 | This theory shows type correctness of the example program in section | |
| 13 |   \ref{sec:JVMListExample} (p. \pageref{sec:JVMListExample}) by
 | |
| 14 | explicitly providing a welltyping. It also shows that the start | |
| 15 | state of the program conforms to the welltyping; hence type safe | |
| 16 | execution is guaranteed. | |
| 17 | *} | |
| 18 | ||
| 12951 | 19 | section "Setup" | 
| 20 | text {*
 | |
| 21 |   Since the types @{typ cnam}, @{text vnam}, and @{text mname} are 
 | |
| 22 | anonymous, we describe distinctness of names in the example by axioms: | |
| 23 | *} | |
| 24 | axioms | |
| 25 | distinct_classes: "list_nam \<noteq> test_nam" | |
| 26 | distinct_fields: "val_nam \<noteq> next_nam" | |
| 27 | ||
| 13101 | 28 | text {* Abbreviations for definitions we will have to use often in the
 | 
| 12951 | 29 | proofs below: *} | 
| 13101 | 30 | lemmas name_defs = list_name_def test_name_def val_name_def next_name_def | 
| 12951 | 31 | lemmas system_defs = SystemClasses_def ObjectC_def NullPointerC_def | 
| 32 | OutOfMemoryC_def ClassCastC_def | |
| 33 | lemmas class_defs = list_class_def test_class_def | |
| 34 | ||
| 35 | text {* These auxiliary proofs are for efficiency: class lookup,
 | |
| 36 | subclass relation, method and field lookup are computed only once: | |
| 37 | *} | |
| 38 | lemma class_Object [simp]: | |
| 28520 | 39 | "class E Object = Some (undefined, [],[])" | 
| 12951 | 40 | by (simp add: class_def system_defs E_def) | 
| 41 | ||
| 42 | lemma class_NullPointer [simp]: | |
| 43 | "class E (Xcpt NullPointer) = Some (Object, [], [])" | |
| 44 | by (simp add: class_def system_defs E_def) | |
| 45 | ||
| 46 | lemma class_OutOfMemory [simp]: | |
| 47 | "class E (Xcpt OutOfMemory) = Some (Object, [], [])" | |
| 48 | by (simp add: class_def system_defs E_def) | |
| 49 | ||
| 50 | lemma class_ClassCast [simp]: | |
| 51 | "class E (Xcpt ClassCast) = Some (Object, [], [])" | |
| 52 | by (simp add: class_def system_defs E_def) | |
| 53 | ||
| 54 | lemma class_list [simp]: | |
| 55 | "class E list_name = Some list_class" | |
| 56 | by (simp add: class_def system_defs E_def name_defs distinct_classes [symmetric]) | |
| 57 | ||
| 58 | lemma class_test [simp]: | |
| 59 | "class E test_name = Some test_class" | |
| 60 | by (simp add: class_def system_defs E_def name_defs distinct_classes [symmetric]) | |
| 61 | ||
| 62 | lemma E_classes [simp]: | |
| 63 |   "{C. is_class E C} = {list_name, test_name, Xcpt NullPointer, 
 | |
| 64 | Xcpt ClassCast, Xcpt OutOfMemory, Object}" | |
| 65 | by (auto simp add: is_class_def class_def system_defs E_def name_defs class_defs) | |
| 66 | ||
| 67 | text {* The subclass releation spelled out: *}
 | |
| 68 | lemma subcls1: | |
| 33954 
1bc3b688548c
backported parts of abstract byte code verifier from AFP/Jinja
 haftmann parents: 
31998diff
changeset | 69 |   "subcls1 E = {(list_name,Object), (test_name,Object), (Xcpt NullPointer, Object),
 | 
| 
1bc3b688548c
backported parts of abstract byte code verifier from AFP/Jinja
 haftmann parents: 
31998diff
changeset | 70 | (Xcpt ClassCast, Object), (Xcpt OutOfMemory, Object)}" | 
| 31197 
c1c163ec6c44
fine-tuned elimination of comprehensions involving x=t.
 nipkow parents: 
31168diff
changeset | 71 | apply (simp add: subcls1_def2) | 
| 31166 
a90fe83f58ea
"{x. P x & x=t & Q x}" is now rewritten to "if P t & Q t then {t} else {}"
 nipkow parents: 
28520diff
changeset | 72 | apply (simp add: name_defs class_defs system_defs E_def class_def) | 
| 33954 
1bc3b688548c
backported parts of abstract byte code verifier from AFP/Jinja
 haftmann parents: 
31998diff
changeset | 73 | apply (simp add: Sigma_def) | 
| 
1bc3b688548c
backported parts of abstract byte code verifier from AFP/Jinja
 haftmann parents: 
31998diff
changeset | 74 | apply auto | 
| 31166 
a90fe83f58ea
"{x. P x & x=t & Q x}" is now rewritten to "if P t & Q t then {t} else {}"
 nipkow parents: 
28520diff
changeset | 75 | done | 
| 12951 | 76 | |
| 77 | text {* The subclass relation is acyclic; hence its converse is well founded: *}
 | |
| 78 | lemma notin_rtrancl: | |
| 33954 
1bc3b688548c
backported parts of abstract byte code verifier from AFP/Jinja
 haftmann parents: 
31998diff
changeset | 79 | "(a, b) \<in> r\<^sup>* \<Longrightarrow> a \<noteq> b \<Longrightarrow> (\<And>y. (a, y) \<notin> r) \<Longrightarrow> False" | 
| 
1bc3b688548c
backported parts of abstract byte code verifier from AFP/Jinja
 haftmann parents: 
31998diff
changeset | 80 | by (auto elim: converse_rtranclE) | 
| 12951 | 81 | |
| 33954 
1bc3b688548c
backported parts of abstract byte code verifier from AFP/Jinja
 haftmann parents: 
31998diff
changeset | 82 | lemma acyclic_subcls1_E: "acyclic (subcls1 E)" | 
| 
1bc3b688548c
backported parts of abstract byte code verifier from AFP/Jinja
 haftmann parents: 
31998diff
changeset | 83 | apply (rule acyclicI) | 
| 12951 | 84 | apply (simp add: subcls1) | 
| 33954 
1bc3b688548c
backported parts of abstract byte code verifier from AFP/Jinja
 haftmann parents: 
31998diff
changeset | 85 | apply (auto dest!: tranclD) | 
| 12951 | 86 | apply (auto elim!: notin_rtrancl simp add: name_defs distinct_classes) | 
| 87 | done | |
| 88 | ||
| 33954 
1bc3b688548c
backported parts of abstract byte code verifier from AFP/Jinja
 haftmann parents: 
31998diff
changeset | 89 | lemma wf_subcls1_E: "wf ((subcls1 E)\<inverse>)" | 
| 
1bc3b688548c
backported parts of abstract byte code verifier from AFP/Jinja
 haftmann parents: 
31998diff
changeset | 90 | apply (rule finite_acyclic_wf_converse) | 
| 23757 | 91 | apply (simp add: subcls1 del: insert_iff) | 
| 12951 | 92 | apply (rule acyclic_subcls1_E) | 
| 93 | done | |
| 94 | ||
| 95 | text {* Method and field lookup: *}
 | |
| 96 | lemma method_Object [simp]: | |
| 31852 
a16bb835e97d
explicit Set constructor for code generated for sets
 haftmann parents: 
31197diff
changeset | 97 | "method (E, Object) = Map.empty" | 
| 12951 | 98 | by (simp add: method_rec_lemma [OF class_Object wf_subcls1_E]) | 
| 99 | ||
| 100 | lemma method_append [simp]: | |
| 101 | "method (E, list_name) (append_name, [Class list_name]) = | |
| 102 | Some (list_name, PrimT Void, 3, 0, append_ins, [(1, 2, 8, Xcpt NullPointer)])" | |
| 103 | apply (insert class_list) | |
| 104 | apply (unfold list_class_def) | |
| 105 | apply (drule method_rec_lemma [OF _ wf_subcls1_E]) | |
| 106 | apply simp | |
| 107 | done | |
| 108 | ||
| 109 | lemma method_makelist [simp]: | |
| 110 | "method (E, test_name) (makelist_name, []) = | |
| 111 | Some (test_name, PrimT Void, 3, 2, make_list_ins, [])" | |
| 112 | apply (insert class_test) | |
| 113 | apply (unfold test_class_def) | |
| 114 | apply (drule method_rec_lemma [OF _ wf_subcls1_E]) | |
| 115 | apply simp | |
| 116 | done | |
| 117 | ||
| 118 | lemma field_val [simp]: | |
| 119 | "field (E, list_name) val_name = Some (list_name, PrimT Integer)" | |
| 23022 
9872ef956276
added qualification for ambiguous definition names
 haftmann parents: 
22271diff
changeset | 120 | apply (unfold TypeRel.field_def) | 
| 12951 | 121 | apply (insert class_list) | 
| 122 | apply (unfold list_class_def) | |
| 123 | apply (drule fields_rec_lemma [OF _ wf_subcls1_E]) | |
| 124 | apply simp | |
| 125 | done | |
| 126 | ||
| 127 | lemma field_next [simp]: | |
| 128 | "field (E, list_name) next_name = Some (list_name, Class list_name)" | |
| 23022 
9872ef956276
added qualification for ambiguous definition names
 haftmann parents: 
22271diff
changeset | 129 | apply (unfold TypeRel.field_def) | 
| 12951 | 130 | apply (insert class_list) | 
| 131 | apply (unfold list_class_def) | |
| 132 | apply (drule fields_rec_lemma [OF _ wf_subcls1_E]) | |
| 133 | apply (simp add: name_defs distinct_fields [symmetric]) | |
| 134 | done | |
| 135 | ||
| 136 | lemma [simp]: "fields (E, Object) = []" | |
| 137 | by (simp add: fields_rec_lemma [OF class_Object wf_subcls1_E]) | |
| 138 | ||
| 139 | lemma [simp]: "fields (E, Xcpt NullPointer) = []" | |
| 140 | by (simp add: fields_rec_lemma [OF class_NullPointer wf_subcls1_E]) | |
| 141 | ||
| 142 | lemma [simp]: "fields (E, Xcpt ClassCast) = []" | |
| 143 | by (simp add: fields_rec_lemma [OF class_ClassCast wf_subcls1_E]) | |
| 144 | ||
| 145 | lemma [simp]: "fields (E, Xcpt OutOfMemory) = []" | |
| 146 | by (simp add: fields_rec_lemma [OF class_OutOfMemory wf_subcls1_E]) | |
| 147 | ||
| 148 | lemma [simp]: "fields (E, test_name) = []" | |
| 149 | apply (insert class_test) | |
| 150 | apply (unfold test_class_def) | |
| 151 | apply (drule fields_rec_lemma [OF _ wf_subcls1_E]) | |
| 152 | apply simp | |
| 153 | done | |
| 154 | ||
| 155 | lemmas [simp] = is_class_def | |
| 156 | ||
| 157 | text {*
 | |
| 158 | The next definition and three proof rules implement an algorithm to | |
| 159 |   enumarate natural numbers. The command @{text "apply (elim pc_end pc_next pc_0"} 
 | |
| 160 | transforms a goal of the form | |
| 161 |   @{prop [display] "pc < n \<Longrightarrow> P pc"} 
 | |
| 162 | into a series of goals | |
| 163 |   @{prop [display] "P 0"} 
 | |
| 164 |   @{prop [display] "P (Suc 0)"} 
 | |
| 165 | ||
| 166 |   @{text "\<dots>"}
 | |
| 167 | ||
| 168 |   @{prop [display] "P n"} 
 | |
| 169 | *} | |
| 35416 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35102diff
changeset | 170 | definition intervall :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> bool" ("_ \<in> [_, _')") where
 | 
| 12951 | 171 | "x \<in> [a, b) \<equiv> a \<le> x \<and> x < b" | 
| 172 | ||
| 173 | lemma pc_0: "x < n \<Longrightarrow> (x \<in> [0, n) \<Longrightarrow> P x) \<Longrightarrow> P x" | |
| 174 | by (simp add: intervall_def) | |
| 175 | ||
| 176 | lemma pc_next: "x \<in> [n0, n) \<Longrightarrow> P n0 \<Longrightarrow> (x \<in> [Suc n0, n) \<Longrightarrow> P x) \<Longrightarrow> P x" | |
| 177 | apply (cases "x=n0") | |
| 13187 | 178 | apply (auto simp add: intervall_def) | 
| 12951 | 179 | done | 
| 180 | ||
| 181 | lemma pc_end: "x \<in> [n,n) \<Longrightarrow> P x" | |
| 182 | by (unfold intervall_def) arith | |
| 183 | ||
| 184 | ||
| 185 | section "Program structure" | |
| 186 | ||
| 187 | text {*
 | |
| 188 | The program is structurally wellformed: | |
| 189 | *} | |
| 14045 | 190 | |
| 12951 | 191 | lemma wf_struct: | 
| 192 | "wf_prog (\<lambda>G C mb. True) E" (is "wf_prog ?mb E") | |
| 193 | proof - | |
| 194 | have "unique E" | |
| 195 | by (simp add: system_defs E_def class_defs name_defs distinct_classes) | |
| 196 | moreover | |
| 197 | have "set SystemClasses \<subseteq> set E" by (simp add: system_defs E_def) | |
| 198 | hence "wf_syscls E" by (rule wf_syscls) | |
| 199 | moreover | |
| 200 | have "wf_cdecl ?mb E ObjectC" by (simp add: wf_cdecl_def ObjectC_def) | |
| 201 | moreover | |
| 202 | have "wf_cdecl ?mb E NullPointerC" | |
| 203 | by (auto elim: notin_rtrancl | |
| 204 | simp add: wf_cdecl_def name_defs NullPointerC_def subcls1) | |
| 205 | moreover | |
| 206 | have "wf_cdecl ?mb E ClassCastC" | |
| 207 | by (auto elim: notin_rtrancl | |
| 208 | simp add: wf_cdecl_def name_defs ClassCastC_def subcls1) | |
| 209 | moreover | |
| 210 | have "wf_cdecl ?mb E OutOfMemoryC" | |
| 211 | by (auto elim: notin_rtrancl | |
| 212 | simp add: wf_cdecl_def name_defs OutOfMemoryC_def subcls1) | |
| 213 | moreover | |
| 214 | have "wf_cdecl ?mb E (list_name, list_class)" | |
| 215 | apply (auto elim!: notin_rtrancl | |
| 216 | simp add: wf_cdecl_def wf_fdecl_def list_class_def | |
| 217 | wf_mdecl_def wf_mhead_def subcls1) | |
| 218 | apply (auto simp add: name_defs distinct_classes distinct_fields) | |
| 219 | done | |
| 220 | moreover | |
| 221 | have "wf_cdecl ?mb E (test_name, test_class)" | |
| 222 | apply (auto elim!: notin_rtrancl | |
| 223 | simp add: wf_cdecl_def wf_fdecl_def test_class_def | |
| 224 | wf_mdecl_def wf_mhead_def subcls1) | |
| 225 | apply (auto simp add: name_defs distinct_classes distinct_fields) | |
| 226 | done | |
| 227 | ultimately | |
| 14045 | 228 | show ?thesis | 
| 229 | by (simp add: wf_prog_def ws_prog_def wf_cdecl_mrT_cdecl_mdecl E_def SystemClasses_def) | |
| 12951 | 230 | qed | 
| 231 | ||
| 232 | section "Welltypings" | |
| 233 | text {*
 | |
| 234 |   We show welltypings of the methods @{term append_name} in class @{term list_name}, 
 | |
| 235 |   and @{term makelist_name} in class @{term test_name}:
 | |
| 236 | *} | |
| 237 | lemmas eff_simps [simp] = eff_def norm_eff_def xcpt_eff_def | |
| 238 | declare appInvoke [simp del] | |
| 239 | ||
| 35416 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35102diff
changeset | 240 | definition phi_append :: method_type ("\<phi>\<^sub>a") where
 | 
| 12951 | 241 | "\<phi>\<^sub>a \<equiv> map (\<lambda>(x,y). Some (x, map OK y)) [ | 
| 242 | ( [], [Class list_name, Class list_name]), | |
| 243 | ( [Class list_name], [Class list_name, Class list_name]), | |
| 244 | ( [Class list_name], [Class list_name, Class list_name]), | |
| 245 | ( [Class list_name, Class list_name], [Class list_name, Class list_name]), | |
| 246 | ([NT, Class list_name, Class list_name], [Class list_name, Class list_name]), | |
| 247 | ( [Class list_name], [Class list_name, Class list_name]), | |
| 248 | ( [Class list_name, Class list_name], [Class list_name, Class list_name]), | |
| 249 | ( [PrimT Void], [Class list_name, Class list_name]), | |
| 250 | ( [Class Object], [Class list_name, Class list_name]), | |
| 251 | ( [], [Class list_name, Class list_name]), | |
| 252 | ( [Class list_name], [Class list_name, Class list_name]), | |
| 253 | ( [Class list_name, Class list_name], [Class list_name, Class list_name]), | |
| 254 | ( [], [Class list_name, Class list_name]), | |
| 255 | ( [PrimT Void], [Class list_name, Class list_name])]" | |
| 256 | ||
| 13214 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 257 | |
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 258 | lemma bounded_append [simp]: | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 259 | "check_bounded append_ins [(Suc 0, 2, 8, Xcpt NullPointer)]" | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 260 | apply (simp add: check_bounded_def) | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 261 | apply (simp add: nat_number append_ins_def) | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 262 | apply (rule allI, rule impI) | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 263 | apply (elim pc_end pc_next pc_0) | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 264 | apply auto | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 265 | done | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 266 | |
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 267 | lemma types_append [simp]: "check_types E 3 (Suc (Suc 0)) (map OK \<phi>\<^sub>a)" | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 268 | apply (auto simp add: check_types_def phi_append_def JVM_states_unfold) | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 269 | apply (unfold list_def) | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 270 | apply auto | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 271 | done | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 272 | |
| 12951 | 273 | lemma wt_append [simp]: | 
| 274 | "wt_method E list_name [Class list_name] (PrimT Void) 3 0 append_ins | |
| 275 | [(Suc 0, 2, 8, Xcpt NullPointer)] \<phi>\<^sub>a" | |
| 13214 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 276 | apply (simp add: wt_method_def wt_start_def wt_instr_def) | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 277 | apply (simp add: phi_append_def append_ins_def) | 
| 12951 | 278 | apply clarify | 
| 279 | apply (elim pc_end pc_next pc_0) | |
| 280 | apply simp | |
| 281 | apply (fastsimp simp add: match_exception_entry_def sup_state_conv subcls1) | |
| 282 | apply simp | |
| 283 | apply simp | |
| 284 | apply (fastsimp simp add: sup_state_conv subcls1) | |
| 285 | apply simp | |
| 286 | apply (simp add: app_def xcpt_app_def) | |
| 287 | apply simp | |
| 288 | apply simp | |
| 289 | apply simp | |
| 290 | apply (simp add: match_exception_entry_def) | |
| 291 | apply (simp add: match_exception_entry_def) | |
| 292 | apply simp | |
| 293 | apply simp | |
| 294 | done | |
| 295 | ||
| 13006 | 296 | text {* Some abbreviations for readability *} 
 | 
| 35102 | 297 | abbreviation Clist :: ty | 
| 298 | where "Clist == Class list_name" | |
| 299 | abbreviation Ctest :: ty | |
| 300 | where "Ctest == Class test_name" | |
| 12951 | 301 | |
| 35416 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35102diff
changeset | 302 | definition phi_makelist :: method_type ("\<phi>\<^sub>m") where
 | 
| 12951 | 303 | "\<phi>\<^sub>m \<equiv> map (\<lambda>(x,y). Some (x, y)) [ | 
| 13214 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 304 | ( [], [OK Ctest, Err , Err ]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 305 | ( [Clist], [OK Ctest, Err , Err ]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 306 | ( [Clist, Clist], [OK Ctest, Err , Err ]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 307 | ( [Clist], [OK Clist, Err , Err ]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 308 | ( [PrimT Integer, Clist], [OK Clist, Err , Err ]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 309 | ( [], [OK Clist, Err , Err ]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 310 | ( [Clist], [OK Clist, Err , Err ]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 311 | ( [Clist, Clist], [OK Clist, Err , Err ]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 312 | ( [Clist], [OK Clist, OK Clist, Err ]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 313 | ( [PrimT Integer, Clist], [OK Clist, OK Clist, Err ]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 314 | ( [], [OK Clist, OK Clist, Err ]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 315 | ( [Clist], [OK Clist, OK Clist, Err ]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 316 | ( [Clist, Clist], [OK Clist, OK Clist, Err ]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 317 | ( [Clist], [OK Clist, OK Clist, OK Clist]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 318 | ( [PrimT Integer, Clist], [OK Clist, OK Clist, OK Clist]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 319 | ( [], [OK Clist, OK Clist, OK Clist]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 320 | ( [Clist], [OK Clist, OK Clist, OK Clist]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 321 | ( [Clist, Clist], [OK Clist, OK Clist, OK Clist]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 322 | ( [PrimT Void], [OK Clist, OK Clist, OK Clist]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 323 | ( [], [OK Clist, OK Clist, OK Clist]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 324 | ( [Clist], [OK Clist, OK Clist, OK Clist]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 325 | ( [Clist, Clist], [OK Clist, OK Clist, OK Clist]), | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 326 | ( [PrimT Void], [OK Clist, OK Clist, OK Clist])]" | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 327 | |
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 328 | lemma bounded_makelist [simp]: "check_bounded make_list_ins []" | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 329 | apply (simp add: check_bounded_def) | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 330 | apply (simp add: nat_number make_list_ins_def) | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 331 | apply (rule allI, rule impI) | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 332 | apply (elim pc_end pc_next pc_0) | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 333 | apply auto | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 334 | done | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 335 | |
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 336 | lemma types_makelist [simp]: "check_types E 3 (Suc (Suc (Suc 0))) (map OK \<phi>\<^sub>m)" | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 337 | apply (auto simp add: check_types_def phi_makelist_def JVM_states_unfold) | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 338 | apply (unfold list_def) | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 339 | apply auto | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 340 | done | 
| 12951 | 341 | |
| 342 | lemma wt_makelist [simp]: | |
| 343 | "wt_method E test_name [] (PrimT Void) 3 2 make_list_ins [] \<phi>\<^sub>m" | |
| 13214 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 344 | apply (simp add: wt_method_def) | 
| 
2aa33ed5f526
wt_method now checks bounded+types ==> wt_kildall <=> wt_method
 kleing parents: 
13187diff
changeset | 345 | apply (simp add: make_list_ins_def phi_makelist_def) | 
| 13043 
ad1828b479b7
renamed nat_number_of to nat_number (avoid clash with separate theorem);
 wenzelm parents: 
13006diff
changeset | 346 | apply (simp add: wt_start_def nat_number) | 
| 12951 | 347 | apply (simp add: wt_instr_def) | 
| 348 | apply clarify | |
| 349 | apply (elim pc_end pc_next pc_0) | |
| 350 | apply (simp add: match_exception_entry_def) | |
| 351 | apply simp | |
| 352 | apply simp | |
| 353 | apply simp | |
| 354 | apply (simp add: match_exception_entry_def) | |
| 355 | apply (simp add: match_exception_entry_def) | |
| 356 | apply simp | |
| 357 | apply simp | |
| 358 | apply simp | |
| 359 | apply (simp add: match_exception_entry_def) | |
| 360 | apply (simp add: match_exception_entry_def) | |
| 361 | apply simp | |
| 362 | apply simp | |
| 363 | apply simp | |
| 364 | apply (simp add: match_exception_entry_def) | |
| 365 | apply (simp add: match_exception_entry_def) | |
| 366 | apply simp | |
| 367 | apply (simp add: app_def xcpt_app_def) | |
| 13101 | 368 | apply simp | 
| 12951 | 369 | apply simp | 
| 370 | apply simp | |
| 13101 | 371 | apply (simp add: app_def xcpt_app_def) | 
| 12951 | 372 | apply simp | 
| 373 | done | |
| 374 | ||
| 375 | text {* The whole program is welltyped: *}
 | |
| 35416 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35102diff
changeset | 376 | definition Phi :: prog_type ("\<Phi>") where
 | 
| 13101 | 377 | "\<Phi> C sg \<equiv> if C = test_name \<and> sg = (makelist_name, []) then \<phi>\<^sub>m else | 
| 378 | if C = list_name \<and> sg = (append_name, [Class list_name]) then \<phi>\<^sub>a else []" | |
| 13139 | 379 | |
| 12951 | 380 | lemma wf_prog: | 
| 13101 | 381 | "wt_jvm_prog E \<Phi>" | 
| 12951 | 382 | apply (unfold wt_jvm_prog_def) | 
| 383 | apply (rule wf_mb'E [OF wf_struct]) | |
| 384 | apply (simp add: E_def) | |
| 385 | apply clarify | |
| 386 | apply (fold E_def) | |
| 13101 | 387 | apply (simp add: system_defs class_defs Phi_def) | 
| 12951 | 388 | apply auto | 
| 13101 | 389 | done | 
| 12951 | 390 | |
| 391 | ||
| 392 | section "Conformance" | |
| 393 | text {* Execution of the program will be typesafe, because its
 | |
| 394 | start state conforms to the welltyping: *} | |
| 395 | ||
| 13052 | 396 | lemma "E,\<Phi> \<turnstile>JVM start_state E test_name makelist_name \<surd>" | 
| 397 | apply (rule BV_correct_initial) | |
| 398 | apply (rule wf_prog) | |
| 399 | apply simp | |
| 400 | apply simp | |
| 12951 | 401 | done | 
| 402 | ||
| 13092 | 403 | |
| 404 | section "Example for code generation: inferring method types" | |
| 405 | ||
| 28520 | 406 | definition test_kil :: "jvm_prog \<Rightarrow> cname \<Rightarrow> ty list \<Rightarrow> ty \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> | 
| 407 | exception_table \<Rightarrow> instr list \<Rightarrow> JVMType.state list" where | |
| 408 | "test_kil G C pTs rT mxs mxl et instr = | |
| 13092 | 409 | (let first = Some ([],(OK (Class C))#((map OK pTs))@(replicate mxl Err)); | 
| 410 | start = OK first#(replicate (size instr - 1) (OK None)) | |
| 411 | in kiljvm G mxs (1+size pTs+mxl) rT et instr start)" | |
| 412 | ||
| 413 | lemma [code]: | |
| 15045 | 414 |   "unstables r step ss = (UN p:{..<size ss}. if \<not>stable r step ss p then {p} else {})"
 | 
| 13092 | 415 | apply (unfold unstables_def) | 
| 416 | apply (rule equalityI) | |
| 417 | apply (rule subsetI) | |
| 418 | apply (erule CollectE) | |
| 419 | apply (erule conjE) | |
| 420 | apply (rule UN_I) | |
| 421 | apply simp | |
| 422 | apply simp | |
| 423 | apply (rule subsetI) | |
| 424 | apply (erule UN_E) | |
| 425 | apply (case_tac "\<not> stable r step ss p") | |
| 426 | apply simp+ | |
| 427 | done | |
| 428 | ||
| 28520 | 429 | definition some_elem :: "'a set \<Rightarrow> 'a" where | 
| 430 | "some_elem = (%S. SOME x. x : S)" | |
| 13092 | 431 | |
| 432 | consts_code | |
| 31852 
a16bb835e97d
explicit Set constructor for code generated for sets
 haftmann parents: 
31197diff
changeset | 433 |   "some_elem" ("(case/ _ of/ {*Set*}/ xs/ =>/ hd/ xs)")
 | 
| 13092 | 434 | |
| 28520 | 435 | text {* This code setup is just a demonstration and \emph{not} sound! *}
 | 
| 436 | ||
| 437 | lemma False | |
| 438 | proof - | |
| 439 | have "some_elem (set [False, True]) = False" | |
| 440 | by evaluation | |
| 441 | moreover have "some_elem (set [True, False]) = True" | |
| 442 | by evaluation | |
| 443 | ultimately show False | |
| 444 | by (simp add: some_elem_def) | |
| 445 | qed | |
| 446 | ||
| 447 | lemma [code]: | |
| 31867 | 448 | "iter f step ss w = while (\<lambda>(ss, w). \<not> is_empty w) | 
| 28520 | 449 | (\<lambda>(ss, w). | 
| 450 |         let p = some_elem w in propa f (step p (ss ! p)) ss (w - {p}))
 | |
| 451 | (ss, w)" | |
| 37024 
e938a0b5286e
renamed List_Set to the now more appropriate More_Set
 haftmann parents: 
35416diff
changeset | 452 | unfolding iter_def More_Set.is_empty_def some_elem_def .. | 
| 20593 | 453 | |
| 13092 | 454 | lemma JVM_sup_unfold [code]: | 
| 455 | "JVMType.sup S m n = lift2 (Opt.sup | |
| 456 | (Product.sup (Listn.sup (JType.sup S)) | |
| 457 | (\<lambda>x y. OK (map2 (lift2 (JType.sup S)) x y))))" | |
| 458 | apply (unfold JVMType.sup_def JVMType.sl_def Opt.esl_def Err.sl_def | |
| 459 | stk_esl_def reg_sl_def Product.esl_def | |
| 460 | Listn.sl_def upto_esl_def JType.esl_def Err.esl_def) | |
| 461 | by simp | |
| 462 | ||
| 28520 | 463 | lemmas [code] = JType.sup_def [unfolded exec_lub_def] JVM_le_unfold | 
| 13092 | 464 | |
| 31998 
2c7a24f74db9
code attributes use common underscore convention
 haftmann parents: 
31867diff
changeset | 465 | lemmas [code_ind] = rtranclp.rtrancl_refl converse_rtranclp_into_rtranclp | 
| 13092 | 466 | |
| 17145 | 467 | code_module BV | 
| 468 | contains | |
| 13092 | 469 | test1 = "test_kil E list_name [Class list_name] (PrimT Void) 3 0 | 
| 470 | [(Suc 0, 2, 8, Xcpt NullPointer)] append_ins" | |
| 471 | test2 = "test_kil E test_name [] (PrimT Void) 3 2 [] make_list_ins" | |
| 17145 | 472 | ML BV.test1 | 
| 473 | ML BV.test2 | |
| 13092 | 474 | |
| 13006 | 475 | end |