src/HOL/MicroJava/Comp/CorrComp.thy
author wenzelm
Thu, 11 Feb 2010 00:45:02 +0100
changeset 35102 cc7a0b9f938c
parent 33639 603320b93668
child 35416 d8d7d1b785af
permissions -rwxr-xr-x
modernized translations;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
     1
(*  Title:      HOL/MicroJava/Comp/CorrComp.thy
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
     2
    Author:     Martin Strecker
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
     3
*)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
     4
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
     5
(* Compiler correctness statement and proof *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
     6
15860
a344c4284972 partial modernising of theory headers
paulson
parents: 15481
diff changeset
     7
theory CorrComp
15866
f011452b2815 sped up a bit
kleing
parents: 15860
diff changeset
     8
imports "../J/JTypeSafe" "LemmasComp"
15860
a344c4284972 partial modernising of theory headers
paulson
parents: 15481
diff changeset
     9
begin
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    10
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
    11
declare wf_prog_ws_prog [simp add]
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    12
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    13
(* If no exception is present after evaluation/execution, 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    14
  none can have been present before *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    15
lemma eval_evals_exec_xcpt:
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20432
diff changeset
    16
 "(G \<turnstile> xs -ex\<succ>val-> xs' \<longrightarrow> gx xs' = None \<longrightarrow> gx xs = None) \<and>
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20432
diff changeset
    17
  (G \<turnstile> xs -exs[\<succ>]vals-> xs' \<longrightarrow> gx xs' = None \<longrightarrow> gx xs = None) \<and>
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20432
diff changeset
    18
  (G \<turnstile> xs -st-> xs' \<longrightarrow> gx xs' = None \<longrightarrow> gx xs = None)"
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    19
by (induct rule: eval_evals_exec.induct, auto)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    20
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    21
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    22
(* instance of eval_evals_exec_xcpt for eval *)
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20432
diff changeset
    23
lemma eval_xcpt: "G \<turnstile> xs -ex\<succ>val-> xs' \<Longrightarrow> gx xs' = None \<Longrightarrow> gx xs = None"
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    24
 (is "?H1 \<Longrightarrow> ?H2 \<Longrightarrow> ?T")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    25
proof-
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    26
  assume h1: ?H1
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    27
  assume h2: ?H2
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    28
  from h1 h2 eval_evals_exec_xcpt show "?T" by simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    29
qed
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    30
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    31
(* instance of eval_evals_exec_xcpt for evals *)
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20432
diff changeset
    32
lemma evals_xcpt: "G \<turnstile> xs -exs[\<succ>]vals-> xs' \<Longrightarrow> gx xs' = None \<Longrightarrow> gx xs = None"
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    33
 (is "?H1 \<Longrightarrow> ?H2 \<Longrightarrow> ?T")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    34
proof-
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    35
  assume h1: ?H1
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    36
  assume h2: ?H2
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    37
  from h1 h2 eval_evals_exec_xcpt show "?T" by simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    38
qed
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    39
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    40
(* instance of eval_evals_exec_xcpt for exec *)
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20432
diff changeset
    41
lemma exec_xcpt: "G \<turnstile> xs -st-> xs' \<Longrightarrow> gx xs' = None \<Longrightarrow> gx xs = None"
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    42
 (is "?H1 \<Longrightarrow> ?H2 \<Longrightarrow> ?T")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    43
proof-
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    44
  assume h1: ?H1
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    45
  assume h2: ?H2
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    46
  from h1 h2 eval_evals_exec_xcpt show "?T" by simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    47
qed
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    48
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    49
(**********************************************************************)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    50
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    51
theorem exec_all_trans: "\<lbrakk>(exec_all G s0 s1); (exec_all G s1 s2)\<rbrakk> \<Longrightarrow> (exec_all G s0 s2)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    52
apply (auto simp: exec_all_def elim: Transitive_Closure.rtrancl_trans)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    53
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    54
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    55
theorem exec_all_refl: "exec_all G s s"
15097
b807858b97bd Modifications for trancl_tac (new solver in simplifier).
ballarin
parents: 15076
diff changeset
    56
by (simp only: exec_all_def)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    57
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    58
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    59
theorem exec_instr_in_exec_all:
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    60
  "\<lbrakk> exec_instr i G hp stk lvars C S pc frs =  (None, hp', frs');
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    61
             gis (gmb G C S) ! pc = i\<rbrakk>  \<Longrightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    62
       G \<turnstile> (None, hp, (stk, lvars, C, S, pc) # frs) -jvm\<rightarrow> (None, hp', frs')"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    63
apply (simp only: exec_all_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    64
apply (rule rtrancl_refl [THEN rtrancl_into_rtrancl])
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    65
apply (simp add: gis_def gmb_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    66
apply (case_tac frs', simp+)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    67
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    68
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    69
theorem exec_all_one_step: "
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    70
  \<lbrakk> gis (gmb G C S) = pre @ (i # post); pc0 = length pre;
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    71
  (exec_instr i G hp0 stk0 lvars0 C S pc0 frs) = 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    72
  (None, hp1, (stk1,lvars1,C,S, Suc pc0)#frs) \<rbrakk>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    73
  \<Longrightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    74
  G \<turnstile> (None, hp0, (stk0,lvars0,C,S, pc0)#frs) -jvm\<rightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    75
  (None, hp1, (stk1,lvars1,C,S, Suc pc0)#frs)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    76
apply (unfold exec_all_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    77
apply (rule r_into_rtrancl)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    78
apply (simp add: gis_def gmb_def split_beta)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    79
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    80
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    81
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    82
(***********************************************************************)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    83
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    84
constdefs
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    85
  progression :: "jvm_prog \<Rightarrow> cname \<Rightarrow> sig \<Rightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    86
                 aheap \<Rightarrow> opstack \<Rightarrow> locvars \<Rightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    87
                 bytecode \<Rightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    88
                 aheap \<Rightarrow> opstack \<Rightarrow> locvars \<Rightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    89
                 bool"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    90
  ("{_,_,_} \<turnstile> {_, _, _} >- _ \<rightarrow> {_, _, _}" [61,61,61,61,61,61,90,61,61,61]60)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    91
  "{G,C,S} \<turnstile> {hp0, os0, lvars0} >- instrs \<rightarrow> {hp1, os1, lvars1} ==
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    92
  \<forall> pre post frs.
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    93
  (gis (gmb G C S) = pre @ instrs @ post) \<longrightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    94
   G \<turnstile> (None,hp0,(os0,lvars0,C,S,length pre)#frs) -jvm\<rightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    95
       (None,hp1,(os1,lvars1,C,S,(length pre) + (length instrs))#frs)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    96
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    97
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    98
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
    99
lemma progression_call: 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   100
  "\<lbrakk> \<forall> pc frs.
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   101
  exec_instr instr G hp0 os0 lvars0 C S pc frs =
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   102
      (None, hp', (os', lvars', C', S', 0) # (fr pc) # frs) \<and> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   103
  gis (gmb G C' S') = instrs' @ [Return] \<and> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   104
  {G, C', S'} \<turnstile> {hp', os', lvars'} >- instrs' \<rightarrow> {hp'', os'', lvars''}  \<and>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   105
  exec_instr Return G hp'' os'' lvars'' C' S' (length instrs') 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   106
                                               ((fr pc) # frs) =
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   107
      (None, hp2, (os2, lvars2, C, S, Suc pc) # frs) \<rbrakk> \<Longrightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   108
  {G, C, S} \<turnstile> {hp0, os0, lvars0} >-[instr]\<rightarrow> {hp2,os2,lvars2}"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   109
apply (simp only: progression_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   110
apply (intro strip)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   111
apply (drule_tac x="length pre" in spec)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   112
apply (drule_tac x="frs" in spec)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   113
apply clarify
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   114
apply (rule exec_all_trans)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   115
apply (rule exec_instr_in_exec_all) apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   116
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   117
apply (rule exec_all_trans)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   118
apply (simp only: append_Nil)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   119
apply (drule_tac x="[]" in spec)
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24074
diff changeset
   120
apply (simp only: list.simps list.size)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   121
apply blast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   122
apply (rule exec_instr_in_exec_all)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   123
apply auto
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   124
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   125
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   126
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   127
lemma progression_transitive: 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   128
  "\<lbrakk> instrs_comb = instrs0 @ instrs1; 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   129
  {G, C, S} \<turnstile> {hp0, os0, lvars0} >- instrs0 \<rightarrow> {hp1, os1, lvars1};
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   130
  {G, C, S} \<turnstile> {hp1, os1, lvars1} >- instrs1 \<rightarrow> {hp2, os2, lvars2} \<rbrakk>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   131
  \<Longrightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   132
  {G, C, S} \<turnstile> {hp0, os0, lvars0} >- instrs_comb \<rightarrow> {hp2, os2, lvars2}"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   133
apply (simp only: progression_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   134
apply (intro strip)
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   135
apply (rule_tac ?s1.0 = "Norm (hp1, (os1, lvars1, C, S, 
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   136
                          length pre + length instrs0) # frs)"  
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   137
       in exec_all_trans)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   138
apply (simp only: append_assoc)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   139
apply (erule thin_rl, erule thin_rl)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   140
apply (drule_tac x="pre @ instrs0" in spec)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   141
apply (simp add: add_assoc)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   142
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   143
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   144
lemma progression_refl: 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   145
  "{G, C, S} \<turnstile> {hp0, os0, lvars0} >- [] \<rightarrow> {hp0, os0, lvars0}"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   146
apply (simp add: progression_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   147
apply (intro strip)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   148
apply (rule exec_all_refl)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   149
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   150
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   151
lemma progression_one_step: "
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   152
  \<forall> pc frs. 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   153
  (exec_instr i G hp0 os0 lvars0 C S pc frs) = 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   154
  (None, hp1, (os1,lvars1,C,S, Suc pc)#frs)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   155
  \<Longrightarrow> {G, C, S} \<turnstile> {hp0, os0, lvars0} >- [i] \<rightarrow> {hp1, os1, lvars1}"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   156
apply (unfold progression_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   157
apply (intro strip)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   158
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   159
apply (rule exec_all_one_step)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   160
apply auto
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   161
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   162
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   163
(*****)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   164
constdefs
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   165
  jump_fwd :: "jvm_prog \<Rightarrow> cname \<Rightarrow> sig \<Rightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   166
                 aheap \<Rightarrow> locvars \<Rightarrow> opstack \<Rightarrow> opstack \<Rightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   167
                 instr \<Rightarrow> bytecode \<Rightarrow> bool"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   168
  "jump_fwd G C S hp lvars os0 os1 instr instrs ==
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   169
  \<forall> pre post frs.
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   170
  (gis (gmb G C S) = pre @ instr # instrs @ post) \<longrightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   171
   exec_all G (None,hp,(os0,lvars,C,S, length pre)#frs)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   172
    (None,hp,(os1,lvars,C,S,(length pre) + (length instrs) + 1)#frs)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   173
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   174
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   175
lemma jump_fwd_one_step:
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   176
  "\<forall> pc frs.
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   177
  exec_instr instr G hp os0 lvars C S pc frs = 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   178
    (None, hp, (os1, lvars, C, S, pc + (length instrs) + 1)#frs)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   179
  \<Longrightarrow> jump_fwd G C S hp lvars os0 os1 instr instrs"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   180
apply (unfold jump_fwd_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   181
apply (intro strip)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   182
apply (rule exec_instr_in_exec_all)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   183
apply auto
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   184
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   185
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   186
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   187
lemma jump_fwd_progression_aux: 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   188
  "\<lbrakk> instrs_comb = instr # instrs0 @ instrs1; 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   189
     jump_fwd G C S hp lvars os0 os1 instr instrs0;
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   190
     {G, C, S} \<turnstile> {hp, os1, lvars} >- instrs1 \<rightarrow> {hp2, os2, lvars2} \<rbrakk> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   191
  \<Longrightarrow> {G, C, S} \<turnstile> {hp, os0, lvars} >- instrs_comb \<rightarrow> {hp2, os2, lvars2}"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   192
apply (simp only: progression_def jump_fwd_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   193
apply (intro strip)
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   194
apply (rule_tac ?s1.0 = "Norm(hp, (os1, lvars, C, S, length pre + length instrs0 + 1) # frs)" in exec_all_trans)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   195
apply (simp only: append_assoc)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   196
apply (subgoal_tac "pre @ (instr # instrs0 @ instrs1) @ post = pre @ instr # instrs0 @ (instrs1 @ post)")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   197
apply blast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   198
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   199
apply (erule thin_rl, erule thin_rl)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   200
apply (drule_tac x="pre @ instr # instrs0" in spec)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   201
apply (simp add: add_assoc)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   202
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   203
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   204
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   205
lemma jump_fwd_progression:
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   206
  "\<lbrakk> instrs_comb = instr # instrs0 @ instrs1; 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   207
  \<forall> pc frs.
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   208
  exec_instr instr G hp os0 lvars C S pc frs = 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   209
    (None, hp, (os1, lvars, C, S, pc + (length instrs0) + 1)#frs);
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   210
  {G, C, S} \<turnstile> {hp, os1, lvars} >- instrs1 \<rightarrow> {hp2, os2, lvars2} \<rbrakk> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   211
  \<Longrightarrow> {G, C, S}  \<turnstile> {hp, os0, lvars} >- instrs_comb \<rightarrow> {hp2, os2, lvars2}"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   212
apply (rule jump_fwd_progression_aux)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   213
apply assumption
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   214
apply (rule jump_fwd_one_step) apply assumption+
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   215
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   216
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   217
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   218
(* note: instrs and instr reversed wrt. jump_fwd *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   219
constdefs
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   220
  jump_bwd :: "jvm_prog \<Rightarrow> cname \<Rightarrow> sig \<Rightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   221
                 aheap \<Rightarrow> locvars \<Rightarrow> opstack \<Rightarrow> opstack \<Rightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   222
                 bytecode \<Rightarrow> instr \<Rightarrow> bool"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   223
  "jump_bwd G C S hp lvars os0 os1 instrs instr ==
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   224
  \<forall> pre post frs.
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   225
  (gis (gmb G C S) = pre @ instrs @ instr # post) \<longrightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   226
   exec_all G (None,hp,(os0,lvars,C,S, (length pre) + (length instrs))#frs)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   227
    (None,hp,(os1,lvars,C,S, (length pre))#frs)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   228
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   229
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   230
lemma jump_bwd_one_step:
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   231
  "\<forall> pc frs.
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   232
  exec_instr instr G hp os0 lvars C S (pc + (length instrs)) frs = 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   233
    (None, hp, (os1, lvars, C, S, pc)#frs)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   234
  \<Longrightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   235
  jump_bwd G C S hp lvars os0 os1 instrs instr"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   236
apply (unfold jump_bwd_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   237
apply (intro strip)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   238
apply (rule exec_instr_in_exec_all)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   239
apply auto
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   240
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   241
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   242
lemma jump_bwd_progression: 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   243
  "\<lbrakk> instrs_comb = instrs @ [instr]; 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   244
  {G, C, S} \<turnstile> {hp0, os0, lvars0} >- instrs \<rightarrow> {hp1, os1, lvars1};
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   245
  jump_bwd G C S hp1 lvars1 os1 os2 instrs instr;
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   246
  {G, C, S} \<turnstile> {hp1, os2, lvars1} >- instrs_comb \<rightarrow> {hp3, os3, lvars3} \<rbrakk> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   247
  \<Longrightarrow> {G, C, S}  \<turnstile> {hp0, os0, lvars0} >- instrs_comb \<rightarrow> {hp3, os3, lvars3}"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   248
apply (simp only: progression_def jump_bwd_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   249
apply (intro strip)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   250
apply (rule exec_all_trans, force)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   251
apply (rule exec_all_trans, force)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   252
apply (rule exec_all_trans, force)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   253
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   254
apply (rule exec_all_refl)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   255
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   256
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   257
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   258
(**********************************************************************)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   259
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   260
(* class C with signature S is defined in program G *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   261
constdefs class_sig_defined :: "'c prog \<Rightarrow> cname \<Rightarrow> sig \<Rightarrow> bool"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   262
  "class_sig_defined G C S == 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   263
  is_class G C \<and> (\<exists> D rT mb. (method (G, C) S = Some (D, rT, mb)))"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   264
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   265
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   266
(* The environment of a java method body 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   267
  (characterized by class and signature) *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   268
constdefs env_of_jmb :: "java_mb prog \<Rightarrow> cname \<Rightarrow> sig \<Rightarrow> java_mb env"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   269
  "env_of_jmb G C S == 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   270
  (let (mn,pTs) = S;
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   271
       (D,rT,(pns,lvars,blk,res)) = the(method (G, C) S) in
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   272
  (G,map_of lvars(pns[\<mapsto>]pTs)(This\<mapsto>Class C)))"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   273
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   274
lemma env_of_jmb_fst [simp]: "fst (env_of_jmb G C S) = G"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   275
by (simp add: env_of_jmb_def split_beta)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   276
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   277
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   278
(**********************************************************************)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   279
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   280
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   281
lemma method_preserves [rule_format (no_asm)]:
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   282
  "\<lbrakk> wf_prog wf_mb G; is_class G C; 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   283
  \<forall> S rT mb. \<forall> cn \<in> fst ` set G. wf_mdecl wf_mb G cn (S,rT,mb)  \<longrightarrow> (P cn S (rT,mb))\<rbrakk>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   284
 \<Longrightarrow> \<forall> D. 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   285
  method (G, C) S = Some (D, rT, mb) \<longrightarrow> (P D S (rT,mb))"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   286
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   287
apply (frule wf_prog_ws_prog [THEN wf_subcls1])
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   288
apply (rule subcls1_induct, assumption, assumption)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   289
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   290
apply (intro strip)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   291
apply ((drule spec)+, drule_tac x="Object" in bspec)
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   292
apply (simp add: wf_prog_def ws_prog_def wf_syscls_def)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   293
apply (subgoal_tac "D=Object") apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   294
apply (drule mp)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   295
apply (frule_tac C=Object in method_wf_mdecl)
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   296
 apply simp
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   297
 apply assumption apply simp apply assumption apply simp
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   298
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents: 15236
diff changeset
   299
apply (simplesubst method_rec) apply simp
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   300
apply force
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   301
apply simp
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13837
diff changeset
   302
apply (simp only: map_add_def)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   303
apply (split option.split)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   304
apply (rule conjI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   305
apply force
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   306
apply (intro strip)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   307
apply (frule_tac
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   308
  ?P1.0 = "wf_mdecl wf_mb G Ca" and
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   309
  ?P2.0 = "%(S, (Da, rT, mb)). P Da S (rT, mb)" in map_of_map_prop)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   310
apply (force simp: wf_cdecl_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   311
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   312
apply clarify
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   313
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   314
apply (simp only: class_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   315
apply (drule map_of_SomeD)+
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   316
apply (frule_tac A="set G" and f=fst in imageI, simp)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   317
apply blast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   318
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   319
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   320
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   321
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   322
lemma method_preserves_length:
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   323
  "\<lbrakk> wf_java_prog G; is_class G C; 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   324
  method (G, C) (mn,pTs) = Some (D, rT, pns, lvars, blk, res)\<rbrakk>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   325
 \<Longrightarrow> length pns = length pTs"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   326
apply (frule_tac 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   327
  P="%D (mn,pTs) (rT, pns, lvars, blk, res). length pns = length pTs"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   328
  in method_preserves)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   329
apply (auto simp: wf_mdecl_def wf_java_mdecl_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   330
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   331
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   332
(**********************************************************************)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   333
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   334
constdefs wtpd_expr :: "java_mb env \<Rightarrow> expr \<Rightarrow> bool"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   335
  "wtpd_expr E e == (\<exists> T. E\<turnstile>e :: T)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   336
  wtpd_exprs :: "java_mb env \<Rightarrow> (expr list) \<Rightarrow> bool"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   337
  "wtpd_exprs E e == (\<exists> T. E\<turnstile>e [::] T)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   338
  wtpd_stmt :: "java_mb env \<Rightarrow> stmt \<Rightarrow> bool" 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   339
  "wtpd_stmt E c == (E\<turnstile>c \<surd>)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   340
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   341
lemma wtpd_expr_newc: "wtpd_expr E (NewC C) \<Longrightarrow> is_class (prg E) C"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   342
by (simp only: wtpd_expr_def, erule exE, erule ty_expr.cases, auto)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   343
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   344
lemma wtpd_expr_cast: "wtpd_expr E (Cast cn e) \<Longrightarrow> (wtpd_expr E e)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   345
by (simp only: wtpd_expr_def, erule exE, erule ty_expr.cases, auto)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   346
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   347
lemma wtpd_expr_lacc: "\<lbrakk> wtpd_expr (env_of_jmb G C S) (LAcc vn);
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   348
  class_sig_defined G C S \<rbrakk>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   349
  \<Longrightarrow> vn \<in> set (gjmb_plns (gmb G C S)) \<or> vn = This"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   350
apply (simp only: wtpd_expr_def env_of_jmb_def class_sig_defined_def galldefs)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   351
apply clarify
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   352
apply (case_tac S)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   353
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   354
apply (erule ty_expr.cases)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   355
apply (auto dest: map_upds_SomeD map_of_SomeD fst_in_set_lemma)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   356
apply (drule map_upds_SomeD)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   357
apply (erule disjE)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   358
  apply assumption
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   359
  apply (drule map_of_SomeD) apply (auto dest: fst_in_set_lemma)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   360
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   361
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   362
lemma wtpd_expr_lass: "wtpd_expr E (vn::=e)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   363
  \<Longrightarrow> (vn \<noteq> This) & (wtpd_expr E (LAcc vn)) & (wtpd_expr E e)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   364
by (simp only: wtpd_expr_def, erule exE, erule ty_expr.cases, auto)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   365
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   366
lemma wtpd_expr_facc: "wtpd_expr E ({fd}a..fn) 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   367
  \<Longrightarrow> (wtpd_expr E a)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   368
by (simp only: wtpd_expr_def, erule exE, erule ty_expr.cases, auto)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   369
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   370
lemma wtpd_expr_fass: "wtpd_expr E ({fd}a..fn:=v) 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   371
  \<Longrightarrow> (wtpd_expr E ({fd}a..fn)) & (wtpd_expr E v)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   372
by (simp only: wtpd_expr_def, erule exE, erule ty_expr.cases, auto)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   373
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   374
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   375
lemma wtpd_expr_binop: "wtpd_expr E (BinOp bop e1 e2)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   376
  \<Longrightarrow> (wtpd_expr E e1) & (wtpd_expr E e2)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   377
by (simp only: wtpd_expr_def, erule exE, erule ty_expr.cases, auto)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   378
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   379
lemma wtpd_exprs_cons: "wtpd_exprs E (e # es)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   380
  \<Longrightarrow> (wtpd_expr E e) & (wtpd_exprs E es)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   381
by (simp only: wtpd_exprs_def wtpd_expr_def, erule exE, erule ty_exprs.cases, auto)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   382
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   383
lemma wtpd_stmt_expr: "wtpd_stmt E (Expr e) \<Longrightarrow> (wtpd_expr E e)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   384
by (simp only: wtpd_stmt_def wtpd_expr_def, erule wt_stmt.cases, auto)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   385
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   386
lemma wtpd_stmt_comp: "wtpd_stmt E (s1;; s2) \<Longrightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   387
   (wtpd_stmt E s1) &  (wtpd_stmt E s2)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   388
by (simp only: wtpd_stmt_def wtpd_expr_def, erule wt_stmt.cases, auto)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   389
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   390
lemma wtpd_stmt_cond: "wtpd_stmt E (If(e) s1 Else s2) \<Longrightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   391
   (wtpd_expr E e) & (wtpd_stmt E s1) &  (wtpd_stmt E s2)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   392
  & (E\<turnstile>e::PrimT Boolean)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   393
by (simp only: wtpd_stmt_def wtpd_expr_def, erule wt_stmt.cases, auto)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   394
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   395
lemma wtpd_stmt_loop: "wtpd_stmt E (While(e) s) \<Longrightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   396
   (wtpd_expr E e) & (wtpd_stmt E s) & (E\<turnstile>e::PrimT Boolean)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   397
by (simp only: wtpd_stmt_def wtpd_expr_def, erule wt_stmt.cases, auto)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   398
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   399
lemma wtpd_expr_call: "wtpd_expr E ({C}a..mn({pTs'}ps))
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   400
  \<Longrightarrow> (wtpd_expr E a) & (wtpd_exprs E ps) 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   401
  & (length ps = length pTs') & (E\<turnstile>a::Class C)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   402
  & (\<exists> pTs md rT. 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   403
       E\<turnstile>ps[::]pTs & max_spec (prg E) C (mn, pTs) = {((md,rT),pTs')})"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   404
apply (simp only: wtpd_expr_def wtpd_exprs_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   405
apply (erule exE)
23757
087b0a241557 - Renamed inductive2 to inductive
berghofe
parents: 22271
diff changeset
   406
apply (ind_cases "E \<turnstile> {C}a..mn( {pTs'}ps) :: T" for T)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   407
apply (auto simp: max_spec_preserves_length)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   408
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   409
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   410
lemma wtpd_blk: 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   411
  "\<lbrakk> method (G, D) (md, pTs) = Some (D, rT, (pns, lvars, blk, res)); 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   412
  wf_prog wf_java_mdecl G; is_class G D \<rbrakk>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   413
 \<Longrightarrow> wtpd_stmt (env_of_jmb G D (md, pTs)) blk"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   414
apply (simp add: wtpd_stmt_def env_of_jmb_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   415
apply (frule_tac P="%D (md, pTs) (rT, (pns, lvars, blk, res)). (G, map_of lvars(pns[\<mapsto>]pTs)(This\<mapsto>Class D)) \<turnstile> blk \<surd> " in method_preserves)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   416
apply (auto simp: wf_mdecl_def wf_java_mdecl_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   417
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   418
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   419
lemma wtpd_res: 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   420
  "\<lbrakk> method (G, D) (md, pTs) = Some (D, rT, (pns, lvars, blk, res)); 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   421
  wf_prog wf_java_mdecl G; is_class G D \<rbrakk>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   422
 \<Longrightarrow> wtpd_expr (env_of_jmb G D (md, pTs)) res"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   423
apply (simp add: wtpd_expr_def env_of_jmb_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   424
apply (frule_tac P="%D (md, pTs) (rT, (pns, lvars, blk, res)). \<exists>T. (G, map_of lvars(pns[\<mapsto>]pTs)(This\<mapsto>Class D)) \<turnstile> res :: T " in method_preserves)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   425
apply (auto simp: wf_mdecl_def wf_java_mdecl_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   426
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   427
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   428
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   429
(**********************************************************************)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   430
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   431
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   432
(* Is there a more elegant proof? *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   433
lemma evals_preserves_length:
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   434
  "G\<turnstile> xs -es[\<succ>]vs-> (None, s) \<Longrightarrow> length es = length vs"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   435
apply (subgoal_tac 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   436
  "\<forall> xs'. (G \<turnstile> xk -xj\<succ>xi-> xh \<longrightarrow> True) & 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   437
  (G\<turnstile> xs -es[\<succ>]vs-> xs' \<longrightarrow>  (\<exists> s. (xs' = (None, s))) \<longrightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   438
  length es = length vs) &
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20432
diff changeset
   439
  (G \<turnstile> xc -xb-> xa \<longrightarrow> True)")
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   440
apply blast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   441
apply (rule allI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   442
apply (rule Eval.eval_evals_exec.induct)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   443
apply auto
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   444
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   445
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   446
(***********************************************************************)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   447
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   448
(* required for translation of BinOp *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   449
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   450
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   451
lemma progression_Eq : "{G, C, S} \<turnstile>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   452
  {hp, (v2 # v1 # os), lvars} 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   453
  >- [Ifcmpeq 3, LitPush (Bool False), Goto 2, LitPush (Bool True)] \<rightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   454
  {hp, (Bool (v1 = v2) # os), lvars}"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   455
apply (case_tac "v1 = v2")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   456
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   457
(* case v1 = v2 *)
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   458
apply (rule_tac ?instrs1.0 = "[LitPush (Bool True)]" in jump_fwd_progression)
13837
8dd150d36c65 Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents: 13673
diff changeset
   459
apply (auto simp: nat_add_distrib)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   460
apply (rule progression_one_step) apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   461
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   462
(* case v1 \<noteq> v2 *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   463
apply (rule progression_one_step [THEN HOL.refl [THEN progression_transitive], simplified])
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   464
apply auto
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   465
apply (rule progression_one_step [THEN HOL.refl [THEN progression_transitive], simplified]) 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   466
apply auto
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   467
apply (rule_tac ?instrs1.0 = "[]" in jump_fwd_progression)
13837
8dd150d36c65 Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents: 13673
diff changeset
   468
apply (auto simp: nat_add_distrib intro: progression_refl)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   469
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   470
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   471
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   472
(**********************************************************************)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   473
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   474
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   475
(* to avoid automatic pair splits *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   476
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   477
declare split_paired_All [simp del] split_paired_Ex [simp del]
24074
40f414b87655 tuned ML declarations;
wenzelm
parents: 23757
diff changeset
   478
declaration {* K (Simplifier.map_ss (fn ss => ss delloop "split_all_tac")) *}
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   479
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   480
lemma distinct_method: "\<lbrakk> wf_java_prog G; is_class G C; 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   481
  method (G, C) S = Some (D, rT, pns, lvars, blk, res) \<rbrakk> \<Longrightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   482
  distinct (gjmb_plns (gmb G C S))"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   483
apply (frule method_wf_mdecl [THEN conjunct2],  assumption, assumption)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   484
apply (case_tac S)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   485
apply (simp add: wf_mdecl_def wf_java_mdecl_def galldefs distinct_append)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   486
apply (simp add: unique_def map_of_in_set)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   487
apply blast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   488
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   489
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   490
lemma distinct_method_if_class_sig_defined : 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   491
  "\<lbrakk> wf_java_prog G; class_sig_defined G C S \<rbrakk> \<Longrightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   492
  distinct (gjmb_plns (gmb G C S))"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   493
by (auto intro: distinct_method simp: class_sig_defined_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   494
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   495
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   496
lemma method_yields_wf_java_mdecl: "\<lbrakk> wf_java_prog G; is_class G C;
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   497
  method (G, C) S = Some (D, rT, pns, lvars, blk, res) \<rbrakk>  \<Longrightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   498
  wf_java_mdecl G D (S,rT,(pns,lvars,blk,res))"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   499
apply (frule method_wf_mdecl)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   500
apply (auto simp: wf_mdecl_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   501
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   502
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   503
(**********************************************************************)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   504
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   505
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   506
lemma progression_lvar_init_aux [rule_format (no_asm)]: "
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   507
  \<forall> zs prfx lvals lvars0. 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   508
  lvars0 =  (zs @ lvars) \<longrightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   509
  (disjoint_varnames pns lvars0 \<longrightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   510
  (length lvars = length lvals) \<longrightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   511
  (Suc(length pns + length zs) = length prfx) \<longrightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   512
   ({cG, D, S} \<turnstile> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   513
    {h, os, (prfx @ lvals)}
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   514
    >- (concat (map (compInit (pns, lvars0, blk, res)) lvars)) \<rightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   515
    {h, os, (prfx @ (map (\<lambda>p. (default_val (snd p))) lvars))}))"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   516
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   517
apply (induct lvars)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   518
apply (clarsimp, rule progression_refl)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   519
apply (intro strip)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   520
apply (case_tac lvals) apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   521
apply (simp (no_asm_simp) )
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   522
15236
f289e8ba2bb3 Proofs needed to be updated because induction now preserves name of
nipkow
parents: 15097
diff changeset
   523
apply (rule_tac ?lvars1.0 = "(prfx @ [default_val (snd a)]) @ list" in progression_transitive, rule HOL.refl)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   524
apply (case_tac a) apply (simp (no_asm_simp) add: compInit_def)
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   525
apply (rule_tac ?instrs0.0 = "[load_default_val b]" in progression_transitive, simp)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   526
apply (rule progression_one_step)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   527
apply (simp (no_asm_simp) add: load_default_val_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   528
apply (rule conjI, simp)+ apply (rule HOL.refl)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   529
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   530
apply (rule progression_one_step)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   531
apply (simp (no_asm_simp))
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   532
apply (rule conjI, simp)+
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   533
apply (simp add: index_of_var2)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   534
apply (drule_tac x="zs @ [a]" in spec) (* instantiate zs *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   535
apply (drule mp, simp)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   536
apply (drule_tac x="(prfx @ [default_val (snd a)])" in spec) (* instantiate prfx *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   537
apply auto
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   538
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   539
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   540
lemma progression_lvar_init [rule_format (no_asm)]: 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   541
  "\<lbrakk> wf_java_prog G; is_class G C;
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   542
  method (G, C) S = Some (D, rT, pns, lvars, blk, res) \<rbrakk> \<Longrightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   543
  length pns = length pvs \<longrightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   544
  (\<forall> lvals. 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   545
  length lvars = length lvals \<longrightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   546
   {cG, D, S} \<turnstile>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   547
   {h, os, (a' # pvs @ lvals)}
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   548
   >- (compInitLvars (pns, lvars, blk, res) lvars) \<rightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   549
   {h, os, (locvars_xstate G C S (Norm (h, init_vars lvars(pns[\<mapsto>]pvs)(This\<mapsto>a'))))})"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   550
apply (simp only: compInitLvars_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   551
apply (frule method_yields_wf_java_mdecl, assumption, assumption)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   552
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   553
apply (simp only: wf_java_mdecl_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   554
apply (subgoal_tac "(\<forall>y\<in>set pns. y \<notin> set (map fst lvars))")
33639
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 32960
diff changeset
   555
apply (simp add: init_vars_def locvars_xstate_def locvars_locals_def galldefs unique_def split_def map_of_map_as_map_upd del: map_map)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   556
apply (intro strip)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   557
apply (simp (no_asm_simp) only: append_Cons [THEN sym])
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   558
apply (rule progression_lvar_init_aux)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   559
apply (auto simp: unique_def map_of_in_set disjoint_varnames_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   560
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   561
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   562
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   563
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   564
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   565
(**********************************************************************)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   566
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   567
lemma state_ok_eval: "\<lbrakk>xs::\<preceq>E; wf_java_prog (prg E); wtpd_expr E e;
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   568
  (prg E)\<turnstile>xs -e\<succ>v -> xs'\<rbrakk> \<Longrightarrow>  xs'::\<preceq>E"
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   569
apply (simp only: wtpd_expr_def)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   570
apply (erule exE)
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   571
apply (case_tac xs', case_tac xs)
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   572
apply (auto intro: eval_type_sound [THEN conjunct1])
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   573
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   574
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   575
lemma state_ok_evals: "\<lbrakk>xs::\<preceq>E; wf_java_prog (prg E); wtpd_exprs E es;
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20432
diff changeset
   576
  prg E \<turnstile> xs -es[\<succ>]vs-> xs'\<rbrakk> \<Longrightarrow> xs'::\<preceq>E"
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   577
apply (simp only: wtpd_exprs_def)
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   578
apply (erule exE)
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   579
apply (case_tac xs) apply (case_tac xs')
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   580
apply (auto intro: evals_type_sound [THEN conjunct1])
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   581
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   582
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   583
lemma state_ok_exec: "\<lbrakk>xs::\<preceq>E; wf_java_prog (prg E); wtpd_stmt E st;
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20432
diff changeset
   584
  prg E \<turnstile> xs -st-> xs'\<rbrakk> \<Longrightarrow>  xs'::\<preceq>E"
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   585
apply (simp only: wtpd_stmt_def)
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   586
apply (case_tac xs', case_tac xs)
14143
7544966fa07d Modifications after changes in MicroJava/J
streckem
parents: 14045
diff changeset
   587
apply (auto dest: exec_type_sound)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   588
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   589
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   590
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   591
lemma state_ok_init: 
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   592
  "\<lbrakk> wf_java_prog G; (x, h, l)::\<preceq>(env_of_jmb G C S); 
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   593
  is_class G dynT;
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   594
  method (G, dynT) (mn, pTs) = Some (md, rT, pns, lvars, blk, res);
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   595
  list_all2 (conf G h) pvs pTs; G,h \<turnstile> a' ::\<preceq> Class md\<rbrakk>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   596
\<Longrightarrow>
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   597
(np a' x, h, init_vars lvars(pns[\<mapsto>]pvs)(This\<mapsto>a'))::\<preceq>(env_of_jmb G md (mn, pTs))"
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   598
apply (frule wf_prog_ws_prog)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   599
apply (frule method_in_md [THEN conjunct2], assumption+)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   600
apply (frule method_yields_wf_java_mdecl, assumption, assumption)
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   601
apply (simp add: env_of_jmb_def gs_def conforms_def split_beta)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   602
apply (simp add: wf_java_mdecl_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   603
apply (rule conjI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   604
apply (rule lconf_ext)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   605
apply (rule lconf_ext_list)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   606
apply (rule lconf_init_vars)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   607
apply (auto dest: Ball_set_table)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   608
apply (simp add: np_def xconf_raise_if)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   609
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   610
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   611
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   612
lemma ty_exprs_list_all2 [rule_format (no_asm)]: 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   613
  "(\<forall> Ts. (E \<turnstile> es [::] Ts) = list_all2 (\<lambda>e T. E \<turnstile> e :: T) es Ts)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   614
apply (rule list.induct)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   615
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   616
apply (rule allI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   617
apply (rule iffI)
23757
087b0a241557 - Renamed inductive2 to inductive
berghofe
parents: 22271
diff changeset
   618
  apply (ind_cases "E \<turnstile> [] [::] Ts" for Ts, assumption)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   619
  apply simp apply (rule WellType.Nil)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   620
apply (simp add: list_all2_Cons1)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   621
apply (rule allI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   622
apply (rule iffI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   623
  apply (rename_tac a exs Ts)
23757
087b0a241557 - Renamed inductive2 to inductive
berghofe
parents: 22271
diff changeset
   624
  apply (ind_cases "E \<turnstile> a # exs  [::] Ts" for a exs Ts) apply blast
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   625
  apply (auto intro: WellType.Cons)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   626
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   627
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   628
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   629
lemma conf_bool: "G,h \<turnstile> v::\<preceq>PrimT Boolean \<Longrightarrow> \<exists> b. v = Bool b"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   630
apply (simp add: conf_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   631
apply (erule exE)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   632
apply (case_tac v)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   633
apply (auto elim: widen.cases)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   634
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   635
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   636
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   637
lemma class_expr_is_class: "\<lbrakk>E \<turnstile> e :: Class C; ws_prog (prg E)\<rbrakk> 
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   638
  \<Longrightarrow> is_class (prg E) C"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   639
by (case_tac E, auto dest: ty_expr_is_type)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   640
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   641
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   642
lemma max_spec_widen: "max_spec G C (mn, pTs) = {((md,rT),pTs')} \<Longrightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   643
  list_all2 (\<lambda> T T'. G \<turnstile> T \<preceq> T') pTs pTs'"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   644
by (blast dest: singleton_in_set max_spec2appl_meths appl_methsD)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   645
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   646
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   647
lemma eval_conf: "\<lbrakk>G \<turnstile> s -e\<succ>v-> s'; wf_java_prog G; s::\<preceq>E;
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   648
  E\<turnstile>e::T; gx s' = None; prg E = G \<rbrakk> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   649
  \<Longrightarrow> G,gh s'\<turnstile>v::\<preceq>T"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   650
apply (simp add: gh_def)
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   651
apply (rule_tac x3="fst s" and s3="snd s"and x'3="fst s'"  
14143
7544966fa07d Modifications after changes in MicroJava/J
streckem
parents: 14045
diff changeset
   652
  in eval_type_sound [THEN conjunct2 [THEN conjunct1 [THEN mp]], simplified])
7544966fa07d Modifications after changes in MicroJava/J
streckem
parents: 14045
diff changeset
   653
apply assumption+
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   654
apply (simp (no_asm_use) add: surjective_pairing [THEN sym])
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   655
apply (simp only: surjective_pairing [THEN sym])
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   656
apply (auto simp add: gs_def gx_def)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   657
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   658
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   659
lemma evals_preserves_conf:
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   660
  "\<lbrakk> G\<turnstile> s -es[\<succ>]vs-> s'; G,gh s \<turnstile> t ::\<preceq> T; E \<turnstile>es[::]Ts;
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   661
  wf_java_prog G; s::\<preceq>E; 
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   662
  prg E = G \<rbrakk> \<Longrightarrow> G,gh s' \<turnstile> t ::\<preceq> T"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   663
apply (subgoal_tac "gh s\<le>| gh s'")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   664
apply (frule conf_hext, assumption, assumption)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   665
apply (frule eval_evals_exec_type_sound [THEN conjunct2 [THEN conjunct1 [THEN mp]]]) 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   666
apply (subgoal_tac "G \<turnstile> (gx s, (gh s, gl s)) -es[\<succ>]vs-> (gx s', (gh s', gl s'))")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   667
apply assumption
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   668
apply (simp add: gx_def gh_def gl_def surjective_pairing [THEN sym])
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   669
apply (case_tac E)
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   670
apply (simp add: gx_def gs_def gh_def gl_def surjective_pairing [THEN sym])
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   671
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   672
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   673
lemma eval_of_class: "\<lbrakk> G \<turnstile> s -e\<succ>a'-> s'; E \<turnstile> e :: Class C; 
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   674
  wf_java_prog G; s::\<preceq>E; gx s'=None; a' \<noteq> Null; G=prg E\<rbrakk>
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   675
  \<Longrightarrow> (\<exists> lc. a' = Addr lc)"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   676
apply (case_tac s, case_tac s', simp)
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   677
apply (frule eval_type_sound, (simp add: gs_def)+)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   678
apply (case_tac a')
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   679
apply (auto simp: conf_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   680
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   681
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   682
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   683
lemma dynT_subcls: 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   684
  "\<lbrakk> a' \<noteq> Null; G,h\<turnstile>a'::\<preceq> Class C; dynT = fst (the (h (the_Addr a')));
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   685
  is_class G dynT; ws_prog G \<rbrakk> \<Longrightarrow> G\<turnstile>dynT \<preceq>C C"
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   686
apply (case_tac "C = Object")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   687
apply (simp, rule subcls_C_Object, assumption+)
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   688
apply simp
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   689
apply (frule non_np_objD, auto)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   690
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   691
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   692
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   693
lemma method_defined: "\<lbrakk> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   694
  m = the (method (G, dynT) (mn, pTs)); 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   695
  dynT = fst (the (h a)); is_class G dynT; wf_java_prog G; 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   696
  a' \<noteq> Null; G,h\<turnstile>a'::\<preceq> Class C; a = the_Addr a';
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   697
  \<exists>pTsa md rT. max_spec G C (mn, pTsa) = {((md, rT), pTs)} \<rbrakk>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   698
\<Longrightarrow> (method (G, dynT) (mn, pTs)) = Some m"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   699
apply (erule exE)+
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   700
apply (drule singleton_in_set, drule max_spec2appl_meths)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   701
apply (simp add: appl_methds_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   702
apply ((erule exE)+, (erule conjE)+, (erule exE)+)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   703
apply (drule widen_methd)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   704
apply assumption
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   705
apply (rule dynT_subcls) apply assumption+ apply simp apply simp
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   706
apply (erule exE)+ apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   707
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   708
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   709
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   710
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   711
(**********************************************************************)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   712
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   713
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   714
(* 1. any difference between locvars_xstate \<dots> and L ??? *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   715
(* 2. possibly skip env_of_jmb ??? *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   716
theorem compiler_correctness: 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   717
  "wf_java_prog G \<Longrightarrow>
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20432
diff changeset
   718
  (G \<turnstile> xs -ex\<succ>val-> xs' \<longrightarrow>
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   719
  gx xs = None \<longrightarrow> gx xs' = None \<longrightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   720
  (\<forall> os CL S.
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   721
  (class_sig_defined G CL S) \<longrightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   722
  (wtpd_expr (env_of_jmb G CL S) ex) \<longrightarrow>
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   723
  (xs ::\<preceq> (env_of_jmb G CL S)) \<longrightarrow>
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   724
  ( {TranslComp.comp G, CL, S} \<turnstile>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   725
    {gh xs, os, (locvars_xstate G CL S xs)}
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   726
    >- (compExpr (gmb G CL S) ex) \<rightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   727
    {gh xs', val#os, locvars_xstate G CL S xs'}))) \<and> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   728
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20432
diff changeset
   729
 (G \<turnstile> xs -exs[\<succ>]vals-> xs' \<longrightarrow>
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   730
  gx xs = None \<longrightarrow> gx xs' = None \<longrightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   731
  (\<forall> os CL S.
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   732
  (class_sig_defined G CL S) \<longrightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   733
  (wtpd_exprs (env_of_jmb G CL S) exs) \<longrightarrow>
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   734
  (xs::\<preceq>(env_of_jmb G CL S)) \<longrightarrow>
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   735
  ( {TranslComp.comp G, CL, S} \<turnstile>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   736
    {gh xs, os, (locvars_xstate G CL S xs)}
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   737
    >- (compExprs (gmb G CL S) exs) \<rightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   738
    {gh xs', (rev vals)@os, (locvars_xstate G CL S xs')}))) \<and> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   739
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20432
diff changeset
   740
  (G \<turnstile> xs -st-> xs' \<longrightarrow>
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   741
   gx xs = None \<longrightarrow> gx xs' = None \<longrightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   742
  (\<forall> os CL S.
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   743
  (class_sig_defined G CL S) \<longrightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   744
  (wtpd_stmt (env_of_jmb G CL S) st) \<longrightarrow>
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   745
  (xs::\<preceq>(env_of_jmb G CL S)) \<longrightarrow>
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   746
  ( {TranslComp.comp G, CL, S} \<turnstile>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   747
    {gh xs, os, (locvars_xstate G CL S xs)}
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   748
    >- (compStmt (gmb G CL S) st) \<rightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   749
    {gh xs', os, (locvars_xstate G CL S xs')})))"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   750
apply (rule Eval.eval_evals_exec.induct)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   751
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   752
(* case XcptE *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   753
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   754
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   755
(* case NewC *) 
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   756
apply clarify 
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   757
apply (frule wf_prog_ws_prog [THEN wf_subcls1]) (* establish  wf ((subcls1 G)^-1) *)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   758
apply (simp add: c_hupd_hp_invariant)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   759
apply (rule progression_one_step)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   760
apply (rotate_tac 1, drule sym) (* reverse equation (a, None) = new_Addr (fst s) *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   761
apply (simp add: locvars_xstate_def locvars_locals_def comp_fields)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   762
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   763
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   764
(* case Cast *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   765
apply (intro allI impI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   766
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   767
apply (frule raise_if_NoneD)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   768
apply (frule wtpd_expr_cast)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   769
apply simp
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   770
apply (rule_tac ?instrs0.0 = "(compExpr (gmb G CL S) e)" in progression_transitive, simp)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   771
apply blast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   772
apply (rule progression_one_step)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   773
apply (simp add: raise_system_xcpt_def  gh_def comp_cast_ok)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   774
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   775
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   776
(* case Lit *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   777
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   778
apply (intro strip)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   779
apply (rule progression_one_step)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   780
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   781
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   782
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   783
(* case BinOp *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   784
apply (intro allI impI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   785
apply (frule_tac xs=s1 in eval_xcpt, assumption) (* establish (gx s1 = None) *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   786
apply (frule wtpd_expr_binop)
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   787
(* establish (s1::\<preceq> \<dots>) *)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   788
apply (frule_tac e=e1 in state_ok_eval) apply (simp (no_asm_simp)) apply simp apply (simp (no_asm_use) only: env_of_jmb_fst) 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   789
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   790
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   791
apply (simp (no_asm_use) only: compExpr_compExprs.simps)
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   792
apply (rule_tac ?instrs0.0 = "compExpr (gmb G CL S) e1" in progression_transitive, simp) apply blast
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   793
apply (rule_tac ?instrs0.0 = "compExpr (gmb G CL S) e2" in progression_transitive, simp) apply blast
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   794
apply (case_tac bop)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   795
  (*subcase bop = Eq *)  apply simp apply (rule progression_Eq)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   796
  (*subcase bop = Add *) apply simp apply (rule progression_one_step) apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   797
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   798
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   799
(* case LAcc *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   800
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   801
apply (intro strip)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   802
apply (rule progression_one_step)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   803
apply (simp add: locvars_xstate_def locvars_locals_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   804
apply (frule wtpd_expr_lacc)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   805
apply assumption
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   806
apply (simp add: gl_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   807
apply (erule select_at_index)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   808
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   809
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   810
(* case LAss *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   811
apply (intro allI impI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   812
apply (frule wtpd_expr_lass, erule conjE, erule conjE)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   813
apply (simp add: compExpr_compExprs.simps)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   814
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   815
apply (rule_tac ?instrs0.0 = "(compExpr (gmb G CL S) e)" in progression_transitive, rule HOL.refl)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   816
apply blast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   817
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   818
apply (rule_tac ?instrs0.0 = "[Dup]" in progression_transitive, simp)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   819
apply (rule progression_one_step)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   820
apply (simp add: gh_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   821
apply (rule conjI, simp)+ apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   822
apply (rule progression_one_step)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   823
apply (simp add: gh_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   824
(* the following falls out of the general scheme *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   825
apply (frule wtpd_expr_lacc) apply assumption
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   826
apply (rule update_at_index)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   827
apply (rule distinct_method_if_class_sig_defined) apply assumption
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   828
apply assumption apply simp apply assumption
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   829
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   830
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   831
(* case FAcc *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   832
apply (intro allI impI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   833
   (* establish x1 = None \<and> a' \<noteq> Null *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   834
apply (simp (no_asm_use) only: gx_conv, frule np_NoneD)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   835
apply (frule wtpd_expr_facc)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   836
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   837
apply (simp (no_asm_use) only: compExpr_compExprs.simps)
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   838
apply (rule_tac ?instrs0.0 = "(compExpr (gmb G CL S) e)" in progression_transitive, rule HOL.refl)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   839
apply blast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   840
apply (rule progression_one_step)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   841
apply (simp add: gh_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   842
apply (case_tac "(the (fst s1 (the_Addr a')))")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   843
apply (simp add: raise_system_xcpt_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   844
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   845
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   846
(* case FAss *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   847
apply (intro allI impI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   848
apply (frule wtpd_expr_fass) apply (erule conjE) apply (frule wtpd_expr_facc)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   849
apply (simp only: c_hupd_xcpt_invariant) (* establish x2 = None *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   850
   (* establish x1 = None  and  a' \<noteq> Null  *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   851
apply (frule_tac xs="(np a' x1, s1)" in eval_xcpt)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   852
apply (simp only: gx_conv, simp only: gx_conv, frule np_NoneD, erule conjE)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   853
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   854
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   855
  (* establish ((Norm s1)::\<preceq> \<dots>) *)
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   856
apply (frule_tac e=e1 in state_ok_eval) apply (simp (no_asm_simp) only: env_of_jmb_fst) 
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   857
   apply assumption apply (simp (no_asm_use) only: env_of_jmb_fst) 
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   858
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   859
apply (simp only: compExpr_compExprs.simps)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   860
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   861
apply (rule_tac ?instrs0.0 = "(compExpr (gmb G CL S) e1)" in progression_transitive, rule HOL.refl)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   862
apply fast (* blast does not seem to work - why? *)
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   863
apply (rule_tac ?instrs0.0 = "(compExpr (gmb G CL S) e2)" in progression_transitive, rule HOL.refl)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   864
apply fast
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   865
apply (rule_tac ?instrs0.0 = "[Dup_x1]" and ?instrs1.0 = "[Putfield fn T]" in progression_transitive, simp)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   866
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   867
   (* Dup_x1 *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   868
   apply (rule progression_one_step)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   869
   apply (simp add: gh_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   870
   apply (rule conjI, simp)+ apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   871
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   872
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   873
   (* Putfield \<longrightarrow> still looks nasty*)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   874
   apply (rule progression_one_step)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   875
   apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   876
   apply (case_tac "(the (fst s2 (the_Addr a')))")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   877
   apply (simp add: c_hupd_hp_invariant)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   878
   apply (case_tac s2)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   879
   apply (simp add: c_hupd_conv raise_system_xcpt_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   880
   apply (rule locvars_xstate_par_dep, rule HOL.refl)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   881
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   882
defer (* method call *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   883
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   884
(* case XcptEs *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   885
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   886
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   887
(* case Nil *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   888
apply (simp add: compExpr_compExprs.simps)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   889
apply (intro strip)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   890
apply (rule progression_refl)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   891
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   892
(* case Cons *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   893
apply (intro allI impI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   894
apply (frule_tac xs=s1 in evals_xcpt, simp only: gx_conv) (* establish gx s1 = None *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   895
apply (frule wtpd_exprs_cons)
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   896
   (* establish ((Norm s0)::\<preceq> \<dots>) *)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   897
apply (frule_tac e=e in state_ok_eval) apply (simp (no_asm_simp) only: env_of_jmb_fst) apply simp apply (simp (no_asm_use) only: env_of_jmb_fst)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   898
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   899
apply simp
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   900
apply (rule_tac ?instrs0.0 = "(compExpr (gmb G CL S) e)" in progression_transitive, rule HOL.refl)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   901
apply fast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   902
apply fast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   903
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   904
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   905
(* case Statement: exception *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   906
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   907
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   908
(* case Skip *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   909
apply (intro allI impI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   910
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   911
apply (rule progression_refl)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   912
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   913
(* case Expr *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   914
apply (intro allI impI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   915
apply (frule wtpd_stmt_expr)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   916
apply simp
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   917
apply (rule_tac ?instrs0.0 = "(compExpr (gmb G CL S) e)" in progression_transitive, rule HOL.refl)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   918
apply fast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   919
apply (rule progression_one_step)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   920
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   921
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   922
(* case Comp *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   923
apply (intro allI impI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   924
apply (frule_tac xs=s1 in exec_xcpt, assumption) (* establish (gx s1 = None) *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   925
apply (frule wtpd_stmt_comp)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   926
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   927
  (* establish (s1::\<preceq> \<dots>) *)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   928
apply (frule_tac st=c1 in state_ok_exec) apply (simp (no_asm_simp) only: env_of_jmb_fst) apply simp apply (simp (no_asm_use) only: env_of_jmb_fst)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   929
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   930
apply simp
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   931
apply (rule_tac ?instrs0.0 = "(compStmt (gmb G CL S) c1)" in progression_transitive, rule HOL.refl)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   932
apply fast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   933
apply fast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   934
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   935
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   936
(* case Cond *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   937
apply (intro allI impI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   938
apply (frule_tac xs=s1 in exec_xcpt, assumption) (* establish (gx s1 = None) *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   939
apply (frule wtpd_stmt_cond, (erule conjE)+)
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
   940
(* establish (s1::\<preceq> \<dots>) *)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   941
apply (frule_tac e=e in state_ok_eval) 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   942
apply (simp (no_asm_simp) only: env_of_jmb_fst)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   943
apply assumption 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   944
apply (simp (no_asm_use) only: env_of_jmb_fst) 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   945
(* establish G,gh s1\<turnstile>v::\<preceq>PrimT Boolean *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   946
apply (frule eval_conf, assumption+, rule env_of_jmb_fst)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   947
apply (frule conf_bool) (* establish \<exists>b. v = Bool b *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   948
apply (erule exE)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   949
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   950
apply simp
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   951
apply (rule_tac ?instrs0.0 = "[LitPush (Bool False)]" in progression_transitive, simp (no_asm_simp))
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   952
apply (rule progression_one_step,  simp)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   953
apply (rule conjI, rule HOL.refl)+ apply (rule HOL.refl)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   954
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   955
apply (rule_tac ?instrs0.0 = "compExpr (gmb G CL S) e" in progression_transitive, rule HOL.refl)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   956
apply fast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   957
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   958
apply (case_tac b)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   959
 (* case b= True *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   960
apply simp
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   961
apply (rule_tac ?instrs0.0 = "[Ifcmpeq (2 + int (length (compStmt (gmb G CL S) c1)))]" in progression_transitive, simp)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   962
apply (rule progression_one_step) apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   963
apply (rule conjI, rule HOL.refl)+ apply (rule HOL.refl)
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   964
apply (rule_tac ?instrs0.0 = "(compStmt (gmb G CL S) c1)" in progression_transitive, simp)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   965
apply fast
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   966
apply (rule_tac ?instrs1.0 = "[]" in jump_fwd_progression)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   967
apply (simp, rule conjI, (rule HOL.refl)+)
20432
07ec57376051 lin_arith_prover: splitting reverted because of performance loss
webertj
parents: 20272
diff changeset
   968
apply simp apply (rule conjI, simp) apply (simp add: nat_add_distrib)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   969
apply (rule progression_refl)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   970
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   971
 (* case b= False *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   972
apply simp
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   973
apply (rule_tac ?instrs1.0 = "compStmt (gmb G CL S) c2" in jump_fwd_progression)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   974
apply (simp, rule conjI, (rule HOL.refl)+)
20432
07ec57376051 lin_arith_prover: splitting reverted because of performance loss
webertj
parents: 20272
diff changeset
   975
apply (simp, rule conjI, rule HOL.refl, simp add: nat_add_distrib)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   976
apply fast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   977
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   978
(* case exit Loop *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   979
apply (intro allI impI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   980
apply (frule wtpd_stmt_loop, (erule conjE)+)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   981
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   982
(* establish G,gh s1\<turnstile>v::\<preceq>PrimT Boolean *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   983
apply (frule eval_conf, assumption+, rule env_of_jmb_fst)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   984
apply (frule conf_bool) (* establish \<exists>b. v = Bool b *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   985
apply (erule exE)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   986
apply (case_tac b)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   987
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   988
 (* case b= True \<longrightarrow> contradiction *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   989
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   990
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   991
 (* case b= False *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   992
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   993
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   994
apply (rule_tac ?instrs0.0 = "[LitPush (Bool False)]" in progression_transitive, simp (no_asm_simp))
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   995
apply (rule progression_one_step)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   996
   apply simp 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   997
   apply (rule conjI, rule HOL.refl)+ apply (rule HOL.refl)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
   998
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
   999
apply (rule_tac ?instrs0.0 = "compExpr (gmb G CL S) e" in progression_transitive, rule HOL.refl)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1000
apply fast
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
  1001
apply (rule_tac ?instrs1.0 = "[]" in jump_fwd_progression)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1002
apply (simp, rule conjI, rule HOL.refl, rule HOL.refl)
20432
07ec57376051 lin_arith_prover: splitting reverted because of performance loss
webertj
parents: 20272
diff changeset
  1003
apply (simp, rule conjI, rule HOL.refl, simp add: nat_add_distrib)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1004
apply (rule progression_refl)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1005
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1006
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1007
(* case continue Loop *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1008
apply (intro allI impI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1009
apply (frule_tac xs=s2 in exec_xcpt, assumption) (* establish (gx s2 = None) *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1010
apply (frule_tac xs=s1 in exec_xcpt, assumption) (* establish (gx s1 = None) *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1011
apply (frule wtpd_stmt_loop, (erule conjE)+)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1012
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1013
(* establish (s1::\<preceq> \<dots>) *)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1014
apply (frule_tac e=e in state_ok_eval) apply (simp (no_asm_simp) only: env_of_jmb_fst) apply simp apply (simp (no_asm_use) only: env_of_jmb_fst)
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1015
(* establish (s2::\<preceq> \<dots>) *)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1016
apply (frule_tac xs=s1 and st=c in state_ok_exec)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1017
apply (simp (no_asm_simp) only: env_of_jmb_fst) apply assumption apply (simp (no_asm_use) only: env_of_jmb_fst)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1018
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1019
(* establish G,gh s1\<turnstile>v::\<preceq>PrimT Boolean *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1020
apply (frule eval_conf, assumption+, rule env_of_jmb_fst)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1021
apply (frule conf_bool) (* establish \<exists>b. v = Bool b *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1022
apply (erule exE)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1023
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1024
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1025
apply (rule jump_bwd_progression) 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1026
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1027
apply (rule conjI, (rule HOL.refl)+)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1028
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
  1029
apply (rule_tac ?instrs0.0 = "[LitPush (Bool False)]" in progression_transitive, simp (no_asm_simp))
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1030
apply (rule progression_one_step)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1031
   apply simp 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1032
   apply (rule conjI, simp)+ apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1033
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
  1034
apply (rule_tac ?instrs0.0 = "compExpr (gmb G CL S) e" in progression_transitive, rule HOL.refl)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1035
apply fast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1036
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1037
apply (case_tac b)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1038
 (* case b= True *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1039
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1040
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
  1041
apply (rule_tac ?instrs0.0 = "[Ifcmpeq (2 + int (length (compStmt (gmb G CL S) c)))]" in progression_transitive, simp)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1042
apply (rule progression_one_step) apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1043
apply (rule conjI, rule HOL.refl)+ apply (rule HOL.refl)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1044
apply fast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1045
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1046
 (* case b= False \<longrightarrow> contradiction*)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1047
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1048
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1049
apply (rule jump_bwd_one_step)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1050
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1051
apply blast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1052
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1053
(*****)
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1054
(* case method call *)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1055
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1056
apply (intro allI impI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1057
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1058
apply (frule_tac xs=s3 in eval_xcpt, simp only: gx_conv) (* establish gx s3 = None *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1059
apply (frule exec_xcpt, assumption, simp (no_asm_use) only: gx_conv, frule np_NoneD) (* establish x = None \<and> a' \<noteq> Null *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1060
apply (frule evals_xcpt, simp only: gx_conv) (* establish gx s1 = None *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1061
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1062
apply (frule wtpd_expr_call, (erule conjE)+)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1063
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1064
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1065
(* assumptions about state_ok and is_class *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1066
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1067
(* establish s1::\<preceq> (env_of_jmb G CL S) *)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1068
apply (frule_tac xs="Norm s0" and e=e in state_ok_eval)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1069
apply (simp (no_asm_simp) only: env_of_jmb_fst, assumption, simp (no_asm_use) only: env_of_jmb_fst)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1070
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1071
(* establish (x, h, l)::\<preceq>(env_of_jmb G CL S) *)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1072
apply (frule_tac xs=s1 and xs'="(x, h, l)" in state_ok_evals)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1073
apply (simp (no_asm_simp) only: env_of_jmb_fst, assumption, simp only: env_of_jmb_fst)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1074
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1075
(* establish \<exists> lc. a' = Addr lc *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1076
apply (frule (5) eval_of_class, rule env_of_jmb_fst [THEN sym])
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1077
apply (subgoal_tac "G,h \<turnstile> a' ::\<preceq> Class C")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1078
apply (subgoal_tac "is_class G dynT")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1079
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1080
(* establish method (G, dynT) (mn, pTs) = Some(md, rT, pns, lvars, blk, res) *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1081
apply (drule method_defined, assumption+)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1082
apply (simp only: env_of_jmb_fst)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1083
apply ((erule exE)+, erule conjE, (rule exI)+, assumption) 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1084
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1085
apply (subgoal_tac "is_class G md")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1086
apply (subgoal_tac "G\<turnstile>Class dynT \<preceq> Class md")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1087
apply (subgoal_tac " method (G, md) (mn, pTs) = Some (md, rT, pns, lvars, blk, res)")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1088
apply (subgoal_tac "list_all2 (conf G h) pvs pTs")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1089
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1090
(* establish (np a' x, h, init_vars lvars(pns[\<mapsto>]pvs)(This\<mapsto>a'))::\<preceq>(env_of_jmb G md (mn, pTs)) *)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1091
apply (subgoal_tac "G,h \<turnstile> a' ::\<preceq> Class dynT")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1092
apply (frule (2) conf_widen)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1093
apply (frule state_ok_init, assumption+)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1094
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1095
apply (subgoal_tac "class_sig_defined G md (mn, pTs)")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1096
apply (frule wtpd_blk, assumption, assumption)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1097
apply (frule wtpd_res, assumption, assumption)
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1098
apply (subgoal_tac "s3::\<preceq>(env_of_jmb G md (mn, pTs))")
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1099
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1100
apply (subgoal_tac "method (TranslComp.comp G, md) (mn, pTs) =
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1101
          Some (md, rT, snd (snd (compMethod G md ((mn, pTs), rT, pns, lvars, blk, res))))")
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1102
prefer 2 apply (simp add: wf_prog_ws_prog [THEN comp_method])
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1103
apply (subgoal_tac "method (TranslComp.comp G, dynT) (mn, pTs) =
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1104
          Some (md, rT, snd (snd (compMethod G md ((mn, pTs), rT, pns, lvars, blk, res))))")
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1105
prefer 2 apply (simp add: wf_prog_ws_prog [THEN comp_method])
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1106
 apply (simp only: fst_conv snd_conv)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1107
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1108
(* establish length pns = length pTs *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1109
apply (frule method_preserves_length, assumption, assumption) 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1110
(* establish length pvs = length ps *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1111
apply (frule evals_preserves_length [THEN sym])
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1112
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1113
(** start evaluating subexpressions **)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1114
apply (simp (no_asm_use) only: compExpr_compExprs.simps)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1115
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1116
  (* evaluate e *)
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
  1117
apply (rule_tac ?instrs0.0 = "(compExpr (gmb G CL S) e)" in progression_transitive, rule HOL.refl)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1118
apply fast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1119
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1120
  (* evaluate parameters *)
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
  1121
apply (rule_tac ?instrs0.0 = "compExprs (gmb G CL S) ps" in progression_transitive, rule HOL.refl)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1122
apply fast
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1123
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1124
  (* invokation *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1125
apply (rule progression_call)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1126
apply (intro allI impI conjI)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1127
     (* execute Invoke statement *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1128
apply (simp (no_asm_use) only: exec_instr.simps)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1129
apply (erule thin_rl, erule thin_rl, erule thin_rl)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1130
apply (simp add: compMethod_def raise_system_xcpt_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1131
apply (rule conjI, simp)+ apply (rule HOL.refl)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1132
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1133
     (* get instructions of invoked method *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1134
apply (simp (no_asm_simp) add: gis_def gmb_def compMethod_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1135
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1136
       (* var. initialization *)
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
  1137
apply (rule_tac ?instrs0.0 = "(compInitLvars (pns, lvars, blk, res) lvars)" in progression_transitive, rule HOL.refl)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1138
apply (rule_tac C=md in progression_lvar_init, assumption, assumption, assumption)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1139
apply (simp (no_asm_simp)) (* length pns = length pvs *)
28524
644b62cf678f arbitrary is undefined
haftmann
parents: 24699
diff changeset
  1140
apply (simp (no_asm_simp)) (* length lvars = length (replicate (length lvars) undefined) *)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1141
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1142
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1143
       (* body statement *)
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 14143
diff changeset
  1144
apply (rule_tac ?instrs0.0 = "compStmt (pns, lvars, blk, res) blk" in progression_transitive, rule HOL.refl)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1145
apply (subgoal_tac "(pns, lvars, blk, res) = gmb G md (mn, pTs)")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1146
apply (simp (no_asm_simp))
15866
f011452b2815 sped up a bit
kleing
parents: 15860
diff changeset
  1147
apply (simp only: gh_conv) 
f011452b2815 sped up a bit
kleing
parents: 15860
diff changeset
  1148
apply (drule mp [OF _ TrueI])+
f011452b2815 sped up a bit
kleing
parents: 15860
diff changeset
  1149
apply (erule allE, erule allE, erule allE, erule impE, assumption)+
f011452b2815 sped up a bit
kleing
parents: 15860
diff changeset
  1150
apply ((erule impE, assumption)+, assumption)
15860
a344c4284972 partial modernising of theory headers
paulson
parents: 15481
diff changeset
  1151
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1152
apply (simp (no_asm_use))
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1153
apply (simp (no_asm_simp) add: gmb_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1154
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1155
       (* return expression *) 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1156
apply (subgoal_tac "(pns, lvars, blk, res) = gmb G md (mn, pTs)")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1157
apply (simp (no_asm_simp))
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1158
apply (simp only: gh_conv)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1159
apply ((drule mp, rule TrueI)+, (drule spec)+, (drule mp, assumption)+, assumption)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1160
apply (simp (no_asm_use))
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1161
apply (simp (no_asm_simp) add: gmb_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1162
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1163
      (* execute return statement *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1164
apply (simp (no_asm_use) add: gh_def locvars_xstate_def gl_def del: drop_append)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1165
apply (subgoal_tac "rev pvs @ a' # os = (rev (a' # pvs)) @ os")
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1166
apply (simp only: drop_append)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1167
apply (simp (no_asm_simp))
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1168
apply (simp (no_asm_simp))
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1169
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1170
(* show s3::\<preceq>\<dots> *)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1171
apply (rule_tac xs = "(np a' x, h, init_vars lvars(pns[\<mapsto>]pvs)(This\<mapsto>a'))" and st=blk in state_ok_exec)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1172
apply assumption apply (simp (no_asm_simp) only: env_of_jmb_fst) 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1173
apply assumption apply (simp (no_asm_use) only: env_of_jmb_fst)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1174
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1175
(* show class_sig_defined G md (mn, pTs) *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1176
apply (simp (no_asm_simp) add: class_sig_defined_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1177
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1178
(* show G,h \<turnstile> a' ::\<preceq> Class dynT *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1179
apply (frule non_npD) apply assumption
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1180
apply (erule exE)+ apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1181
apply (rule conf_obj_AddrI) apply simp 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1182
apply (rule conjI, (rule HOL.refl)+)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1183
apply (rule widen_Class_Class [THEN iffD1], rule widen.refl)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1184
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1185
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1186
  (* show list_all2 (conf G h) pvs pTs *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1187
apply (erule exE)+ apply (erule conjE)+
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1188
apply (rule_tac Ts="pTsa" in conf_list_gext_widen) apply assumption
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20432
diff changeset
  1189
apply (subgoal_tac "G \<turnstile> (gx s1, gs s1) -ps[\<succ>]pvs-> (x, h, l)")
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1190
apply (frule_tac E="env_of_jmb G CL S" in evals_type_sound)
14143
7544966fa07d Modifications after changes in MicroJava/J
streckem
parents: 14045
diff changeset
  1191
apply assumption+
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1192
apply (simp only: env_of_jmb_fst) 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1193
apply (simp add: conforms_def xconf_def gs_def)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1194
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1195
apply (simp (no_asm_use) only: gx_def gs_def surjective_pairing [THEN sym])
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1196
apply (simp (no_asm_use) only: ty_exprs_list_all2) apply simp
14143
7544966fa07d Modifications after changes in MicroJava/J
streckem
parents: 14045
diff changeset
  1197
apply simp
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1198
apply (simp (no_asm_use) only: gx_def gs_def surjective_pairing [THEN sym])
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1199
    (* list_all2 (\<lambda>T T'. G \<turnstile> T \<preceq> T') pTsa pTs *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1200
    apply (rule max_spec_widen, simp only: env_of_jmb_fst)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1201
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1202
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1203
(* show method (G, md) (mn, pTs) = Some (md, rT, pns, lvars, blk, res) *)
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1204
apply (frule wf_prog_ws_prog [THEN method_in_md [THEN conjunct2]], assumption+)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1205
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1206
  (* show G\<turnstile>Class dynT \<preceq> Class md *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1207
apply (simp (no_asm_use) only: widen_Class_Class)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1208
apply (rule method_wf_mdecl [THEN conjunct1], assumption+)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1209
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1210
  (* is_class G md *)
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1211
apply (rule wf_prog_ws_prog [THEN method_in_md [THEN conjunct1]], assumption+)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1212
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1213
  (* show is_class G dynT *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1214
apply (frule non_npD) apply assumption
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1215
apply (erule exE)+ apply (erule conjE)+
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1216
apply simp
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1217
apply (rule subcls_is_class2) apply assumption
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1218
apply (frule class_expr_is_class) apply (simp only: env_of_jmb_fst)
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1219
apply (rule wf_prog_ws_prog, assumption)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1220
apply (simp only: env_of_jmb_fst)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1221
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1222
 (* show G,h \<turnstile> a' ::\<preceq> Class C *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1223
apply (simp only: wtpd_exprs_def, erule exE)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1224
apply (frule evals_preserves_conf)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1225
apply (rule eval_conf, assumption+)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1226
apply (rule env_of_jmb_fst, assumption+)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1227
apply (rule env_of_jmb_fst)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1228
apply (simp only: gh_conv)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1229
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1230
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1231
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1232
theorem compiler_correctness_eval: "
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1233
  \<lbrakk> G \<turnstile> (None,hp,loc) -ex \<succ> val-> (None,hp',loc');
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1234
  wf_java_prog G;
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1235
  class_sig_defined G C S;
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1236
  wtpd_expr (env_of_jmb G C S) ex;
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1237
  (None,hp,loc) ::\<preceq> (env_of_jmb G C S) \<rbrakk> \<Longrightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1238
  {(TranslComp.comp G), C, S} \<turnstile> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1239
    {hp, os, (locvars_locals G C S loc)}
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1240
      >- (compExpr (gmb G C S) ex) \<rightarrow> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1241
    {hp', val#os, (locvars_locals G C S loc')}"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1242
apply (frule compiler_correctness [THEN conjunct1])
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1243
apply (auto simp: gh_def gx_def gs_def gl_def locvars_xstate_def)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1244
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1245
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1246
theorem compiler_correctness_exec: "
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20432
diff changeset
  1247
  \<lbrakk> G \<turnstile> Norm (hp, loc) -st-> Norm (hp', loc');
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1248
  wf_java_prog G;
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1249
  class_sig_defined G C S;
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1250
  wtpd_stmt (env_of_jmb G C S) st;
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1251
  (None,hp,loc) ::\<preceq> (env_of_jmb G C S) \<rbrakk> \<Longrightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1252
  {(TranslComp.comp G), C, S} \<turnstile> 
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1253
    {hp, os, (locvars_locals G C S loc)}
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1254
      >- (compStmt (gmb G C S) st) \<rightarrow>
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1255
    {hp', os, (locvars_locals G C S loc')}"
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1256
apply (frule compiler_correctness [THEN conjunct2 [THEN conjunct2]])
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1257
apply (auto simp: gh_def gx_def gs_def gl_def locvars_xstate_def)
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1258
done
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1259
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1260
(**********************************************************************)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1261
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1262
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1263
(* reinstall pair splits *)
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1264
declare split_paired_All [simp] split_paired_Ex [simp]
24074
40f414b87655 tuned ML declarations;
wenzelm
parents: 23757
diff changeset
  1265
declaration {* K (Simplifier.map_ss (fn ss => ss addloop ("split_all_tac", split_all_tac))) *}
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1266
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1267
declare wf_prog_ws_prog [simp del]
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 14025
diff changeset
  1268
13673
2950128b8206 First checkin of compiler
streckem
parents:
diff changeset
  1269
end