src/HOL/IMP/Machines.thy
author krauss
Thu, 09 Jul 2009 17:33:22 +0200
changeset 31969 09524788a6b9
parent 30952 7ab2716dd93b
child 31970 ccaadfcf6941
permissions -rw-r--r--
drop unused lemmas
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
30952
7ab2716dd93b power operation on functions with syntax o^; power operation on relations with syntax ^^
haftmann
parents: 23746
diff changeset
     1
theory Machines
7ab2716dd93b power operation on functions with syntax o^; power operation on relations with syntax ^^
haftmann
parents: 23746
diff changeset
     2
imports Natural
7ab2716dd93b power operation on functions with syntax o^; power operation on relations with syntax ^^
haftmann
parents: 23746
diff changeset
     3
begin
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
     4
31969
09524788a6b9 drop unused lemmas
krauss
parents: 30952
diff changeset
     5
lemma rel_pow_commute: "R O R ^^ n = R ^^ n O R"
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 16417
diff changeset
     6
  by (induct n) (simp, simp add: O_assoc [symmetric])
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
     7
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
     8
lemma converse_in_rel_pow_eq:
30952
7ab2716dd93b power operation on functions with syntax o^; power operation on relations with syntax ^^
haftmann
parents: 23746
diff changeset
     9
  "((x,z) \<in> R ^^ n) = (n=0 \<and> z=x \<or> (\<exists>m y. n = Suc m \<and> (x,y) \<in> R \<and> (y,z) \<in> R ^^ m))"
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    10
apply(rule iffI)
31969
09524788a6b9 drop unused lemmas
krauss
parents: 30952
diff changeset
    11
 apply(blast elim:rel_pow_E2)
09524788a6b9 drop unused lemmas
krauss
parents: 30952
diff changeset
    12
apply (fastsimp simp add:gr0_conv_Suc rel_pow_commute)
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    13
done
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    14
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    15
subsection "Instructions"
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    16
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    17
text {* There are only three instructions: *}
13675
01fc1fc61384 ASIN -> SET
nipkow
parents: 13612
diff changeset
    18
datatype instr = SET loc aexp | JMPF bexp nat | JMPB nat
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    19
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    20
types instrs = "instr list"
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    21
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    22
subsection "M0 with PC"
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    23
23746
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    24
inductive_set
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    25
  exec01 :: "instr list \<Rightarrow> ((nat\<times>state) \<times> (nat\<times>state))set"
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    26
  and exec01' :: "[instrs, nat,state, nat,state] \<Rightarrow> bool"
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    27
    ("(_/ \<turnstile> (1\<langle>_,/_\<rangle>)/ -1\<rightarrow> (1\<langle>_,/_\<rangle>))" [50,0,0,0,0] 50)
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    28
  for P :: "instr list"
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    29
where
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    30
  "p \<turnstile> \<langle>i,s\<rangle> -1\<rightarrow> \<langle>j,t\<rangle> == ((i,s),j,t) : (exec01 p)"
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    31
| SET: "\<lbrakk> n<size P; P!n = SET x a \<rbrakk> \<Longrightarrow> P \<turnstile> \<langle>n,s\<rangle> -1\<rightarrow> \<langle>Suc n,s[x\<mapsto> a s]\<rangle>"
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    32
| JMPFT: "\<lbrakk> n<size P; P!n = JMPF b i;  b s \<rbrakk> \<Longrightarrow> P \<turnstile> \<langle>n,s\<rangle> -1\<rightarrow> \<langle>Suc n,s\<rangle>"
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    33
| JMPFF: "\<lbrakk> n<size P; P!n = JMPF b i; \<not>b s; m=n+i+1; m \<le> size P \<rbrakk>
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    34
        \<Longrightarrow> P \<turnstile> \<langle>n,s\<rangle> -1\<rightarrow> \<langle>m,s\<rangle>"
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    35
| JMPB:  "\<lbrakk> n<size P; P!n = JMPB i; i \<le> n; j = n-i \<rbrakk> \<Longrightarrow> P \<turnstile> \<langle>n,s\<rangle> -1\<rightarrow> \<langle>j,s\<rangle>"
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    36
23746
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    37
abbreviation
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    38
  exec0s :: "[instrs, nat,state, nat,state] \<Rightarrow> bool"
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    39
    ("(_/ \<turnstile> (1\<langle>_,/_\<rangle>)/ -*\<rightarrow> (1\<langle>_,/_\<rangle>))" [50,0,0,0,0] 50)  where
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    40
  "p \<turnstile> \<langle>i,s\<rangle> -*\<rightarrow> \<langle>j,t\<rangle> == ((i,s),j,t) : (exec01 p)^*"
14565
c6dc17aab88a use more symbols in HTML output
kleing
parents: 13675
diff changeset
    41
23746
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    42
abbreviation
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    43
  exec0n :: "[instrs, nat,state, nat, nat,state] \<Rightarrow> bool"
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    44
    ("(_/ \<turnstile> (1\<langle>_,/_\<rangle>)/ -_\<rightarrow> (1\<langle>_,/_\<rangle>))" [50,0,0,0,0] 50)  where
30952
7ab2716dd93b power operation on functions with syntax o^; power operation on relations with syntax ^^
haftmann
parents: 23746
diff changeset
    45
  "p \<turnstile> \<langle>i,s\<rangle> -n\<rightarrow> \<langle>j,t\<rangle> == ((i,s),j,t) : (exec01 p)^^n"
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    46
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    47
subsection "M0 with lists"
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    48
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    49
text {* We describe execution of programs in the machine by
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    50
  an operational (small step) semantics:
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    51
*}
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    52
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    53
types config = "instrs \<times> instrs \<times> state"
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    54
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    55
23746
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    56
inductive_set
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    57
  stepa1 :: "(config \<times> config)set"
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    58
  and stepa1' :: "[instrs,instrs,state, instrs,instrs,state] \<Rightarrow> bool"
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    59
    ("((1\<langle>_,/_,/_\<rangle>)/ -1\<rightarrow> (1\<langle>_,/_,/_\<rangle>))" 50)
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    60
where
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    61
  "\<langle>p,q,s\<rangle> -1\<rightarrow> \<langle>p',q',t\<rangle> == ((p,q,s),p',q',t) : stepa1"
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    62
| "\<langle>SET x a#p,q,s\<rangle> -1\<rightarrow> \<langle>p,SET x a#q,s[x\<mapsto> a s]\<rangle>"
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    63
| "b s \<Longrightarrow> \<langle>JMPF b i#p,q,s\<rangle> -1\<rightarrow> \<langle>p,JMPF b i#q,s\<rangle>"
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    64
| "\<lbrakk> \<not> b s; i \<le> size p \<rbrakk>
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    65
   \<Longrightarrow> \<langle>JMPF b i # p, q, s\<rangle> -1\<rightarrow> \<langle>drop i p, rev(take i p) @ JMPF b i # q, s\<rangle>"
23746
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    66
| "i \<le> size q
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    67
   \<Longrightarrow> \<langle>JMPB i # p, q, s\<rangle> -1\<rightarrow> \<langle>rev(take i q) @ JMPB i # p, drop i q, s\<rangle>"
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    68
23746
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    69
abbreviation
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    70
  stepa :: "[instrs,instrs,state, instrs,instrs,state] \<Rightarrow> bool"
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    71
    ("((1\<langle>_,/_,/_\<rangle>)/ -*\<rightarrow> (1\<langle>_,/_,/_\<rangle>))" 50)  where
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    72
  "\<langle>p,q,s\<rangle> -*\<rightarrow> \<langle>p',q',t\<rangle> == ((p,q,s),p',q',t) : (stepa1^*)"
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    73
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    74
abbreviation
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    75
  stepan :: "[instrs,instrs,state, nat, instrs,instrs,state] \<Rightarrow> bool"
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    76
    ("((1\<langle>_,/_,/_\<rangle>)/ -_\<rightarrow> (1\<langle>_,/_,/_\<rangle>))" 50) where
30952
7ab2716dd93b power operation on functions with syntax o^; power operation on relations with syntax ^^
haftmann
parents: 23746
diff changeset
    77
  "\<langle>p,q,s\<rangle> -i\<rightarrow> \<langle>p',q',t\<rangle> == ((p,q,s),p',q',t) : (stepa1^^i)"
23746
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    78
a455e69c31cc Adapted to new inductive definition package.
berghofe
parents: 22267
diff changeset
    79
inductive_cases execE: "((i#is,p,s), (is',p',s')) : stepa1"
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    80
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    81
lemma exec_simp[simp]:
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    82
 "(\<langle>i#p,q,s\<rangle> -1\<rightarrow> \<langle>p',q',t\<rangle>) = (case i of
13675
01fc1fc61384 ASIN -> SET
nipkow
parents: 13612
diff changeset
    83
 SET x a \<Rightarrow> t = s[x\<mapsto> a s] \<and> p' = p \<and> q' = i#q |
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    84
 JMPF b n \<Rightarrow> t=s \<and> (if b s then p' = p \<and> q' = i#q
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    85
            else n \<le> size p \<and> p' = drop n p \<and> q' = rev(take n p) @ i # q) |
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    86
 JMPB n \<Rightarrow> n \<le> size q \<and> t=s \<and> p' = rev(take n q) @ i # p \<and> q' = drop n q)"
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    87
apply(rule iffI)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    88
defer
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    89
apply(clarsimp simp add: stepa1.intros split: instr.split_asm split_if_asm)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    90
apply(erule execE)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    91
apply(simp_all)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    92
done
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    93
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    94
lemma execn_simp[simp]:
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    95
"(\<langle>i#p,q,s\<rangle> -n\<rightarrow> \<langle>p'',q'',u\<rangle>) =
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    96
 (n=0 \<and> p'' = i#p \<and> q'' = q \<and> u = s \<or>
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    97
  ((\<exists>m p' q' t. n = Suc m \<and>
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    98
                \<langle>i#p,q,s\<rangle> -1\<rightarrow> \<langle>p',q',t\<rangle> \<and> \<langle>p',q',t\<rangle> -m\<rightarrow> \<langle>p'',q'',u\<rangle>)))"
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
    99
by(subst converse_in_rel_pow_eq, simp)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   100
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   101
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   102
lemma exec_star_simp[simp]: "(\<langle>i#p,q,s\<rangle> -*\<rightarrow> \<langle>p'',q'',u\<rangle>) =
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   103
 (p'' = i#p & q''=q & u=s |
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   104
 (\<exists>p' q' t. \<langle>i#p,q,s\<rangle> -1\<rightarrow> \<langle>p',q',t\<rangle> \<and> \<langle>p',q',t\<rangle> -*\<rightarrow> \<langle>p'',q'',u\<rangle>))"
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   105
apply(simp add: rtrancl_is_UN_rel_pow del:exec_simp)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   106
apply(blast)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   107
done
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   108
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   109
declare nth_append[simp]
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   110
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   111
lemma rev_revD: "rev xs = rev ys \<Longrightarrow> xs = ys"
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   112
by simp
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   113
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   114
lemma [simp]: "(rev xs @ rev ys = rev zs) = (ys @ xs = zs)"
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   115
apply(rule iffI)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   116
 apply(rule rev_revD, simp)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   117
apply fastsimp
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   118
done
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   119
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   120
lemma direction1:
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   121
 "\<langle>q,p,s\<rangle> -1\<rightarrow> \<langle>q',p',t\<rangle> \<Longrightarrow>
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   122
  rev p' @ q' = rev p @ q \<and> rev p @ q \<turnstile> \<langle>size p,s\<rangle> -1\<rightarrow> \<langle>size p',t\<rangle>"
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 16417
diff changeset
   123
apply(induct set: stepa1)
13675
01fc1fc61384 ASIN -> SET
nipkow
parents: 13612
diff changeset
   124
   apply(simp add:exec01.SET)
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   125
  apply(fastsimp intro:exec01.JMPFT)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   126
 apply simp
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   127
 apply(rule exec01.JMPFF)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   128
     apply simp
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   129
    apply fastsimp
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   130
   apply simp
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   131
  apply simp
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   132
 apply simp
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   133
apply(fastsimp simp add:exec01.JMPB)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   134
done
20217
25b068a99d2b linear arithmetic splits certain operators (e.g. min, max, abs)
webertj
parents: 18372
diff changeset
   135
13098
e0644528e21e Better compiler proof
nipkow
parents: 13095
diff changeset
   136
(*
e0644528e21e Better compiler proof
nipkow
parents: 13095
diff changeset
   137
lemma rev_take: "\<And>i. rev (take i xs) = drop (length xs - i) (rev xs)"
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   138
apply(induct xs)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   139
 apply simp_all
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   140
apply(case_tac i)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   141
apply simp_all
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   142
done
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   143
13098
e0644528e21e Better compiler proof
nipkow
parents: 13095
diff changeset
   144
lemma rev_drop: "\<And>i. rev (drop i xs) = take (length xs - i) (rev xs)"
e0644528e21e Better compiler proof
nipkow
parents: 13095
diff changeset
   145
apply(induct xs)
e0644528e21e Better compiler proof
nipkow
parents: 13095
diff changeset
   146
 apply simp_all
e0644528e21e Better compiler proof
nipkow
parents: 13095
diff changeset
   147
apply(case_tac i)
e0644528e21e Better compiler proof
nipkow
parents: 13095
diff changeset
   148
apply simp_all
e0644528e21e Better compiler proof
nipkow
parents: 13095
diff changeset
   149
done
e0644528e21e Better compiler proof
nipkow
parents: 13095
diff changeset
   150
*)
20217
25b068a99d2b linear arithmetic splits certain operators (e.g. min, max, abs)
webertj
parents: 18372
diff changeset
   151
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   152
lemma direction2:
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   153
 "rpq \<turnstile> \<langle>sp,s\<rangle> -1\<rightarrow> \<langle>sp',t\<rangle> \<Longrightarrow>
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 16417
diff changeset
   154
  rpq = rev p @ q & sp = size p & sp' = size p' \<longrightarrow>
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   155
          rev p' @ q' = rev p @ q \<longrightarrow> \<langle>q,p,s\<rangle> -1\<rightarrow> \<langle>q',p',t\<rangle>"
20503
503ac4c5ef91 induct method: renamed 'fixing' to 'arbitrary';
wenzelm
parents: 20217
diff changeset
   156
apply(induct arbitrary: p q p' q' set: exec01)
13098
e0644528e21e Better compiler proof
nipkow
parents: 13095
diff changeset
   157
   apply(clarsimp simp add: neq_Nil_conv append_eq_conv_conj)
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   158
   apply(drule sym)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   159
   apply simp
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   160
   apply(rule rev_revD)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   161
   apply simp
13098
e0644528e21e Better compiler proof
nipkow
parents: 13095
diff changeset
   162
  apply(clarsimp simp add: neq_Nil_conv append_eq_conv_conj)
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   163
  apply(drule sym)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   164
  apply simp
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   165
  apply(rule rev_revD)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   166
  apply simp
13612
55d32e76ef4e Adapted to new simplifier.
berghofe
parents: 13098
diff changeset
   167
 apply(simp (no_asm_use) add: neq_Nil_conv append_eq_conv_conj, clarify)+
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   168
 apply(drule sym)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   169
 apply simp
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   170
 apply(rule rev_revD)
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   171
 apply simp
13098
e0644528e21e Better compiler proof
nipkow
parents: 13095
diff changeset
   172
apply(clarsimp simp add: neq_Nil_conv append_eq_conv_conj)
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   173
apply(drule sym)
13098
e0644528e21e Better compiler proof
nipkow
parents: 13095
diff changeset
   174
apply(simp add:rev_take)
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   175
apply(rule rev_revD)
13098
e0644528e21e Better compiler proof
nipkow
parents: 13095
diff changeset
   176
apply(simp add:rev_drop)
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   177
done
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   178
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   179
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   180
theorem M_eqiv:
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   181
"(\<langle>q,p,s\<rangle> -1\<rightarrow> \<langle>q',p',t\<rangle>) =
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   182
 (rev p' @ q' = rev p @ q \<and> rev p @ q \<turnstile> \<langle>size p,s\<rangle> -1\<rightarrow> \<langle>size p',t\<rangle>)"
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 16417
diff changeset
   183
  by (blast dest: direction1 direction2)
13095
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   184
8ed413a57bdc New machine architecture and other direction of compiler proof.
nipkow
parents:
diff changeset
   185
end