src/HOL/MicroJava/J/TypeRel.thy
author wenzelm
Thu, 01 Sep 2016 16:05:22 +0200
changeset 63750 9c8a366778e1
parent 62390 842917225d56
child 67443 3abf6a722518
permissions -rw-r--r--
more robust persistent storage; tuned;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8011
d14c4e9e9c8e *** empty log message ***
nipkow
parents:
diff changeset
     1
(*  Title:      HOL/MicroJava/J/TypeRel.thy
41589
bbd861837ebc tuned headers;
wenzelm
parents: 35416
diff changeset
     2
    Author:     David von Oheimb, Technische Universitaet Muenchen
11070
cc421547e744 improved document (added headers etc)
oheimb
parents: 11026
diff changeset
     3
*)
8011
d14c4e9e9c8e *** empty log message ***
nipkow
parents:
diff changeset
     4
61361
8b5f00202e1a isabelle update_cartouches;
wenzelm
parents: 59682
diff changeset
     5
section \<open>Relations between Java Types\<close>
8011
d14c4e9e9c8e *** empty log message ***
nipkow
parents:
diff changeset
     6
45970
b6d0cff57d96 adjusted to set/pred distinction by means of type constructor `set`
haftmann
parents: 45231
diff changeset
     7
theory TypeRel
55017
2df6ad1dbd66 adapted to move of Wfrec
blanchet
parents: 53374
diff changeset
     8
imports Decl
45970
b6d0cff57d96 adjusted to set/pred distinction by means of type constructor `set`
haftmann
parents: 45231
diff changeset
     9
begin
8011
d14c4e9e9c8e *** empty log message ***
nipkow
parents:
diff changeset
    10
62042
6c6ccf573479 isabelle update_cartouches -c -t;
wenzelm
parents: 61361
diff changeset
    11
\<comment> "direct subclass, cf. 8.1.3"
33954
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    12
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    13
inductive_set
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    14
  subcls1 :: "'c prog => (cname \<times> cname) set"
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    15
  and subcls1' :: "'c prog => cname \<Rightarrow> cname => bool" ("_ \<turnstile> _ \<prec>C1 _" [71,71,71] 70)
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20970
diff changeset
    16
  for G :: "'c prog"
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20970
diff changeset
    17
where
33954
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    18
  "G \<turnstile> C \<prec>C1 D \<equiv> (C, D) \<in> subcls1 G"
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    19
  | subcls1I: "\<lbrakk>class G C = Some (D,rest); C \<noteq> Object\<rbrakk> \<Longrightarrow> G \<turnstile> C \<prec>C1 D"
10061
fe82134773dc added HTML syntax; added spaces in normal syntax for better documents
kleing
parents: 10042
diff changeset
    20
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20970
diff changeset
    21
abbreviation
33954
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    22
  subcls  :: "'c prog => cname \<Rightarrow> cname => bool" ("_ \<turnstile> _ \<preceq>C _"  [71,71,71] 70)
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    23
  where "G \<turnstile> C \<preceq>C D \<equiv> (C, D) \<in> (subcls1 G)^*"
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    24
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    25
lemma subcls1D: 
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    26
  "G\<turnstile>C\<prec>C1D \<Longrightarrow> C \<noteq> Object \<and> (\<exists>fs ms. class G C = Some (D,fs,ms))"
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20970
diff changeset
    27
apply (erule subcls1.cases)
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    28
apply auto
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    29
done
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    30
33954
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    31
lemma subcls1_def2:
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    32
  "subcls1 P =
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    33
     (SIGMA C:{C. is_class P C}. {D. C\<noteq>Object \<and> fst (the (class P C))=D})"
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    34
  by (auto simp add: is_class_def dest: subcls1D intro: subcls1I)
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    35
33954
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    36
lemma finite_subcls1: "finite (subcls1 G)"
23757
087b0a241557 - Renamed inductive2 to inductive
berghofe
parents: 22597
diff changeset
    37
apply(simp add: subcls1_def2 del: mem_Sigma_iff)
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    38
apply(rule finite_SigmaI [OF finite_is_class])
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    39
apply(rule_tac B = "{fst (the (class G C))}" in finite_subset)
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    40
apply  auto
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    41
done
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    42
33954
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    43
lemma subcls_is_class: "(C, D) \<in> (subcls1 G)^+  ==> is_class G C"
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    44
apply (unfold is_class_def)
33954
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    45
apply(erule trancl_trans_induct)
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    46
apply (auto dest!: subcls1D)
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    47
done
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    48
11266
70c9ebbffc49 simplified proofs concerning class_rec
oheimb
parents: 11088
diff changeset
    49
lemma subcls_is_class2 [rule_format (no_asm)]: 
70c9ebbffc49 simplified proofs concerning class_rec
oheimb
parents: 11088
diff changeset
    50
  "G\<turnstile>C\<preceq>C D \<Longrightarrow> is_class G D \<longrightarrow> is_class G C"
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    51
apply (unfold is_class_def)
33954
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    52
apply (erule rtrancl_induct)
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    53
apply  (drule_tac [2] subcls1D)
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    54
apply  auto
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    55
done
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    56
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 33954
diff changeset
    57
definition class_rec :: "'c prog \<Rightarrow> cname \<Rightarrow> 'a \<Rightarrow>
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 33954
diff changeset
    58
    (cname \<Rightarrow> fdecl list \<Rightarrow> 'c mdecl list \<Rightarrow> 'a \<Rightarrow> 'a) \<Rightarrow> 'a" where
33954
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    59
  "class_rec G == wfrec ((subcls1 G)^-1)
13090
4fb7a2f2c1df Improved definition of class_rec: no longer mixes algorithm and
berghofe
parents: 12911
diff changeset
    60
    (\<lambda>r C t f. case class G C of
28524
644b62cf678f arbitrary is undefined
haftmann
parents: 23757
diff changeset
    61
         None \<Rightarrow> undefined
13090
4fb7a2f2c1df Improved definition of class_rec: no longer mixes algorithm and
berghofe
parents: 12911
diff changeset
    62
       | Some (D,fs,ms) \<Rightarrow> 
4fb7a2f2c1df Improved definition of class_rec: no longer mixes algorithm and
berghofe
parents: 12911
diff changeset
    63
           f C fs ms (if C = Object then t else r D t f))"
11284
981ea92a86dd made same_fst recdef_simp
nipkow
parents: 11266
diff changeset
    64
33954
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    65
lemma class_rec_lemma:
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    66
  assumes wf: "wf ((subcls1 G)^-1)"
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    67
    and cls: "class G C = Some (D, fs, ms)"
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    68
  shows "class_rec G C t f = f C fs ms (if C=Object then t else class_rec G D t f)"
58184
db1381d811ab cleanup Wfrec; introduce dependent_wf/wellorder_choice
hoelzl
parents: 55017
diff changeset
    69
  by (subst wfrec_def_adm[OF class_rec_def])
db1381d811ab cleanup Wfrec; introduce dependent_wf/wellorder_choice
hoelzl
parents: 55017
diff changeset
    70
     (auto simp: assms adm_wf_def fun_eq_iff subcls1I split: option.split)
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
    71
20970
c2a342e548a9 added code lemma
haftmann
parents: 18576
diff changeset
    72
definition
33954
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
    73
  "wf_class G = wf ((subcls1 G)^-1)"
20970
c2a342e548a9 added code lemma
haftmann
parents: 18576
diff changeset
    74
c2a342e548a9 added code lemma
haftmann
parents: 18576
diff changeset
    75
44035
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
    76
61361
8b5f00202e1a isabelle update_cartouches;
wenzelm
parents: 59682
diff changeset
    77
text \<open>Code generator setup\<close>
44035
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
    78
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
    79
code_pred 
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
    80
  (modes: i \<Rightarrow> i \<Rightarrow> o \<Rightarrow> bool, i \<Rightarrow> i \<Rightarrow> i \<Rightarrow> bool)
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
    81
  subcls1p 
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
    82
  .
45970
b6d0cff57d96 adjusted to set/pred distinction by means of type constructor `set`
haftmann
parents: 45231
diff changeset
    83
b6d0cff57d96 adjusted to set/pred distinction by means of type constructor `set`
haftmann
parents: 45231
diff changeset
    84
declare subcls1_def [code_pred_def]
b6d0cff57d96 adjusted to set/pred distinction by means of type constructor `set`
haftmann
parents: 45231
diff changeset
    85
44035
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
    86
code_pred 
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
    87
  (modes: i \<Rightarrow> i \<times> o \<Rightarrow> bool, i \<Rightarrow> i \<times> i \<Rightarrow> bool)
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
    88
  [inductify]
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
    89
  subcls1 
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
    90
  .
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
    91
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
    92
definition subcls' where "subcls' G = (subcls1p G)^**"
45970
b6d0cff57d96 adjusted to set/pred distinction by means of type constructor `set`
haftmann
parents: 45231
diff changeset
    93
44035
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
    94
code_pred
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
    95
  (modes: i \<Rightarrow> i \<Rightarrow> i \<Rightarrow> bool, i \<Rightarrow> i \<Rightarrow> o \<Rightarrow> bool)
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
    96
  [inductify]
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
    97
  subcls'
45970
b6d0cff57d96 adjusted to set/pred distinction by means of type constructor `set`
haftmann
parents: 45231
diff changeset
    98
  .
b6d0cff57d96 adjusted to set/pred distinction by means of type constructor `set`
haftmann
parents: 45231
diff changeset
    99
45231
d85a2fdc586c replacing code_inline by code_unfold, removing obsolete code_unfold, code_inline del now that the ancient code generator is removed
bulwahn
parents: 44035
diff changeset
   100
lemma subcls_conv_subcls' [code_unfold]:
45970
b6d0cff57d96 adjusted to set/pred distinction by means of type constructor `set`
haftmann
parents: 45231
diff changeset
   101
  "(subcls1 G)^* = {(C, D). subcls' G C D}"
b6d0cff57d96 adjusted to set/pred distinction by means of type constructor `set`
haftmann
parents: 45231
diff changeset
   102
by(simp add: subcls'_def subcls1_def rtrancl_def)
44035
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   103
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   104
lemma class_rec_code [code]:
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   105
  "class_rec G C t f = 
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   106
  (if wf_class G then 
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   107
    (case class G C of
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   108
       None \<Rightarrow> class_rec G C t f
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   109
     | Some (D, fs, ms) \<Rightarrow> 
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   110
       if C = Object then f Object fs ms t else f C fs ms (class_rec G D t f))
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   111
   else class_rec G C t f)"
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   112
apply(cases "wf_class G")
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   113
 apply(unfold class_rec_def wf_class_def)
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   114
 apply(subst wfrec, assumption)
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   115
 apply(cases "class G C")
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   116
  apply(simp add: wfrec)
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   117
 apply clarsimp
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   118
 apply(rename_tac D fs ms)
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   119
 apply(rule_tac f="f C fs ms" in arg_cong)
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   120
 apply(clarsimp simp add: cut_def)
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   121
 apply(blast intro: subcls1I)
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   122
apply simp
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   123
done
32461
eee4fa79398f no consts_code for wfrec, as it violates the "code generation = equational reasoning" principle
krauss
parents: 28562
diff changeset
   124
44035
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   125
lemma wf_class_code [code]:
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   126
  "wf_class G \<longleftrightarrow> (\<forall>(C, rest) \<in> set G. C \<noteq> Object \<longrightarrow> \<not> G \<turnstile> fst (the (class G C)) \<preceq>C C)"
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   127
proof
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   128
  assume "wf_class G"
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   129
  hence wf: "wf (((subcls1 G)^+)^-1)" unfolding wf_class_def by(rule wf_converse_trancl)
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   130
  hence acyc: "acyclic ((subcls1 G)^+)" by(auto dest: wf_acyclic)
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   131
  show "\<forall>(C, rest) \<in> set G. C \<noteq> Object \<longrightarrow> \<not> G \<turnstile> fst (the (class G C)) \<preceq>C C"
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   132
  proof(safe)
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   133
    fix C D fs ms
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   134
    assume "(C, D, fs, ms) \<in> set G"
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   135
      and "C \<noteq> Object"
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   136
      and subcls: "G \<turnstile> fst (the (class G C)) \<preceq>C C"
61361
8b5f00202e1a isabelle update_cartouches;
wenzelm
parents: 59682
diff changeset
   137
    from \<open>(C, D, fs, ms) \<in> set G\<close> obtain D' fs' ms'
44035
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   138
      where "class": "class G C = Some (D', fs', ms')"
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   139
      unfolding class_def by(auto dest!: weak_map_of_SomeI)
61361
8b5f00202e1a isabelle update_cartouches;
wenzelm
parents: 59682
diff changeset
   140
    hence "G \<turnstile> C \<prec>C1 D'" using \<open>C \<noteq> Object\<close> ..
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 45970
diff changeset
   141
    hence *: "(C, D') \<in> (subcls1 G)^+" ..
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 45970
diff changeset
   142
    also from * acyc have "C \<noteq> D'" by(auto simp add: acyclic_def)
44035
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   143
    with subcls "class" have "(D', C) \<in> (subcls1 G)^+" by(auto dest: rtranclD)
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   144
    finally show False using acyc by(auto simp add: acyclic_def)
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   145
  qed
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   146
next
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   147
  assume rhs[rule_format]: "\<forall>(C, rest) \<in> set G. C \<noteq> Object \<longrightarrow> \<not> G \<turnstile> fst (the (class G C)) \<preceq>C C"
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   148
  have "acyclic (subcls1 G)"
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   149
  proof(intro acyclicI strip notI)
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   150
    fix C
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   151
    assume "(C, C) \<in> (subcls1 G)\<^sup>+"
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   152
    thus False
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   153
    proof(cases)
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   154
      case base
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   155
      then obtain rest where "class G C = Some (C, rest)"
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   156
        and "C \<noteq> Object" by cases
61361
8b5f00202e1a isabelle update_cartouches;
wenzelm
parents: 59682
diff changeset
   157
      from \<open>class G C = Some (C, rest)\<close> have "(C, C, rest) \<in> set G"
44035
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   158
        unfolding class_def by(rule map_of_SomeD)
61361
8b5f00202e1a isabelle update_cartouches;
wenzelm
parents: 59682
diff changeset
   159
      with \<open>C \<noteq> Object\<close> \<open>class G C = Some (C, rest)\<close>
44035
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   160
      have "\<not> G \<turnstile> C \<preceq>C C" by(auto dest: rhs)
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   161
      thus False by simp
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   162
    next
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   163
      case (step D)
61361
8b5f00202e1a isabelle update_cartouches;
wenzelm
parents: 59682
diff changeset
   164
      from \<open>G \<turnstile> D \<prec>C1 C\<close> obtain rest where "class G D = Some (C, rest)"
44035
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   165
        and "D \<noteq> Object" by cases
61361
8b5f00202e1a isabelle update_cartouches;
wenzelm
parents: 59682
diff changeset
   166
      from \<open>class G D = Some (C, rest)\<close> have "(D, C, rest) \<in> set G"
44035
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   167
        unfolding class_def by(rule map_of_SomeD)
61361
8b5f00202e1a isabelle update_cartouches;
wenzelm
parents: 59682
diff changeset
   168
      with \<open>D \<noteq> Object\<close> \<open>class G D = Some (C, rest)\<close>
44035
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   169
      have "\<not> G \<turnstile> C \<preceq>C D" by(auto dest: rhs)
61361
8b5f00202e1a isabelle update_cartouches;
wenzelm
parents: 59682
diff changeset
   170
      moreover from \<open>(C, D) \<in> (subcls1 G)\<^sup>+\<close>
44035
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   171
      have "G \<turnstile> C \<preceq>C D" by(rule trancl_into_rtrancl)
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   172
      ultimately show False by contradiction
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   173
    qed
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   174
  qed
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   175
  thus "wf_class G" unfolding wf_class_def
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   176
    by(rule finite_acyclic_wf_converse[OF finite_subcls1])
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   177
qed
32461
eee4fa79398f no consts_code for wfrec, as it violates the "code generation = equational reasoning" principle
krauss
parents: 28562
diff changeset
   178
62145
5b946c81dfbf eliminated old defs;
wenzelm
parents: 62042
diff changeset
   179
definition "method" :: "'c prog \<times> cname => (sig \<rightharpoonup> cname \<times> ty \<times> 'c)"
5b946c81dfbf eliminated old defs;
wenzelm
parents: 62042
diff changeset
   180
  \<comment> "methods of a class, with inheritance, overriding and hiding, cf. 8.4.6"
5b946c81dfbf eliminated old defs;
wenzelm
parents: 62042
diff changeset
   181
  where [code]: "method \<equiv> \<lambda>(G,C). class_rec G C empty (\<lambda>C fs ms ts.
5b946c81dfbf eliminated old defs;
wenzelm
parents: 62042
diff changeset
   182
                           ts ++ map_of (map (\<lambda>(s,m). (s,(C,m))) ms))"
8011
d14c4e9e9c8e *** empty log message ***
nipkow
parents:
diff changeset
   183
62145
5b946c81dfbf eliminated old defs;
wenzelm
parents: 62042
diff changeset
   184
definition fields :: "'c prog \<times> cname => ((vname \<times> cname) \<times> ty) list"
5b946c81dfbf eliminated old defs;
wenzelm
parents: 62042
diff changeset
   185
  \<comment> "list of fields of a class, including inherited and hidden ones"
5b946c81dfbf eliminated old defs;
wenzelm
parents: 62042
diff changeset
   186
  where [code]: "fields \<equiv> \<lambda>(G,C). class_rec G C [] (\<lambda>C fs ms ts.
5b946c81dfbf eliminated old defs;
wenzelm
parents: 62042
diff changeset
   187
                           map (\<lambda>(fn,ft). ((fn,C),ft)) fs @ ts)"
5b946c81dfbf eliminated old defs;
wenzelm
parents: 62042
diff changeset
   188
5b946c81dfbf eliminated old defs;
wenzelm
parents: 62042
diff changeset
   189
definition field :: "'c prog \<times> cname => (vname \<rightharpoonup> cname \<times> ty)"
5b946c81dfbf eliminated old defs;
wenzelm
parents: 62042
diff changeset
   190
  where [code]: "field == map_of o (map (\<lambda>((fn,fd),ft). (fn,(fd,ft)))) o fields"
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   191
33954
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
   192
lemma method_rec_lemma: "[|class G C = Some (D,fs,ms); wf ((subcls1 G)^-1)|] ==>
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   193
  method (G,C) = (if C = Object then empty else method (G,D)) ++  
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   194
  map_of (map (\<lambda>(s,m). (s,(C,m))) ms)"
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   195
apply (unfold method_def)
62390
842917225d56 more canonical names
nipkow
parents: 62145
diff changeset
   196
apply (simp split del: if_split)
45970
b6d0cff57d96 adjusted to set/pred distinction by means of type constructor `set`
haftmann
parents: 45231
diff changeset
   197
apply (erule (1) class_rec_lemma [THEN trans])
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   198
apply auto
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   199
done
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   200
33954
1bc3b688548c backported parts of abstract byte code verifier from AFP/Jinja
haftmann
parents: 32461
diff changeset
   201
lemma fields_rec_lemma: "[|class G C = Some (D,fs,ms); wf ((subcls1 G)^-1)|] ==>
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   202
 fields (G,C) = 
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   203
  map (\<lambda>(fn,ft). ((fn,C),ft)) fs @ (if C = Object then [] else fields (G,D))"
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   204
apply (unfold fields_def)
62390
842917225d56 more canonical names
nipkow
parents: 62145
diff changeset
   205
apply (simp split del: if_split)
45970
b6d0cff57d96 adjusted to set/pred distinction by means of type constructor `set`
haftmann
parents: 45231
diff changeset
   206
apply (erule (1) class_rec_lemma [THEN trans])
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   207
apply auto
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   208
done
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   209
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   210
lemma field_fields: 
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   211
"field (G,C) fn = Some (fd, fT) \<Longrightarrow> map_of (fields (G,C)) (fn, fd) = Some fT"
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   212
apply (unfold field_def)
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   213
apply (rule table_of_remap_SomeD)
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   214
apply simp
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   215
done
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   216
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   217
62042
6c6ccf573479 isabelle update_cartouches -c -t;
wenzelm
parents: 61361
diff changeset
   218
\<comment> "widening, viz. method invocation conversion,cf. 5.3 i.e. sort of syntactic subtyping"
23757
087b0a241557 - Renamed inductive2 to inductive
berghofe
parents: 22597
diff changeset
   219
inductive
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20970
diff changeset
   220
  widen   :: "'c prog => [ty   , ty   ] => bool" ("_ \<turnstile> _ \<preceq> _"   [71,71,71] 70)
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20970
diff changeset
   221
  for G :: "'c prog"
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20970
diff changeset
   222
where
62042
6c6ccf573479 isabelle update_cartouches -c -t;
wenzelm
parents: 61361
diff changeset
   223
  refl   [intro!, simp]:       "G\<turnstile>      T \<preceq> T"   \<comment> "identity conv., cf. 5.1.1"
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20970
diff changeset
   224
| subcls         : "G\<turnstile>C\<preceq>C D ==> G\<turnstile>Class C \<preceq> Class D"
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20970
diff changeset
   225
| null   [intro!]:             "G\<turnstile>     NT \<preceq> RefT R"
8011
d14c4e9e9c8e *** empty log message ***
nipkow
parents:
diff changeset
   226
44035
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   227
code_pred widen .
322d1657c40c replace old SML code generator by new code generator in MicroJava/JVM and /BV
Andreas Lochbihler
parents: 44014
diff changeset
   228
22597
284b2183d070 rebind HOL.refl as refl (hidden by widen.refl);
wenzelm
parents: 22271
diff changeset
   229
lemmas refl = HOL.refl
284b2183d070 rebind HOL.refl as refl (hidden by widen.refl);
wenzelm
parents: 22271
diff changeset
   230
62042
6c6ccf573479 isabelle update_cartouches -c -t;
wenzelm
parents: 61361
diff changeset
   231
\<comment> "casting conversion, cf. 5.5 / 5.1.5"
6c6ccf573479 isabelle update_cartouches -c -t;
wenzelm
parents: 61361
diff changeset
   232
\<comment> "left out casts on primitve types"
23757
087b0a241557 - Renamed inductive2 to inductive
berghofe
parents: 22597
diff changeset
   233
inductive
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20970
diff changeset
   234
  cast    :: "'c prog => [ty   , ty   ] => bool" ("_ \<turnstile> _ \<preceq>? _"  [71,71,71] 70)
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20970
diff changeset
   235
  for G :: "'c prog"
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20970
diff changeset
   236
where
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 13090
diff changeset
   237
  widen:  "G\<turnstile> C\<preceq> D ==> G\<turnstile>C \<preceq>? D"
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20970
diff changeset
   238
| subcls: "G\<turnstile> D\<preceq>C C ==> G\<turnstile>Class C \<preceq>? Class D"
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   239
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   240
lemma widen_PrimT_RefT [iff]: "(G\<turnstile>PrimT pT\<preceq>RefT rT) = False"
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   241
apply (rule iffI)
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20970
diff changeset
   242
apply (erule widen.cases)
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   243
apply auto
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   244
done
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   245
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   246
lemma widen_RefT: "G\<turnstile>RefT R\<preceq>T ==> \<exists>t. T=RefT t"
23757
087b0a241557 - Renamed inductive2 to inductive
berghofe
parents: 22597
diff changeset
   247
apply (ind_cases "G\<turnstile>RefT R\<preceq>T")
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   248
apply auto
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   249
done
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   250
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   251
lemma widen_RefT2: "G\<turnstile>S\<preceq>RefT R ==> \<exists>t. S=RefT t"
23757
087b0a241557 - Renamed inductive2 to inductive
berghofe
parents: 22597
diff changeset
   252
apply (ind_cases "G\<turnstile>S\<preceq>RefT R")
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   253
apply auto
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   254
done
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   255
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   256
lemma widen_Class: "G\<turnstile>Class C\<preceq>T ==> \<exists>D. T=Class D"
23757
087b0a241557 - Renamed inductive2 to inductive
berghofe
parents: 22597
diff changeset
   257
apply (ind_cases "G\<turnstile>Class C\<preceq>T")
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   258
apply auto
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   259
done
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   260
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   261
lemma widen_Class_NullT [iff]: "(G\<turnstile>Class C\<preceq>NT) = False"
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   262
apply (rule iffI)
23757
087b0a241557 - Renamed inductive2 to inductive
berghofe
parents: 22597
diff changeset
   263
apply (ind_cases "G\<turnstile>Class C\<preceq>NT")
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   264
apply auto
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   265
done
8011
d14c4e9e9c8e *** empty log message ***
nipkow
parents:
diff changeset
   266
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   267
lemma widen_Class_Class [iff]: "(G\<turnstile>Class C\<preceq> Class D) = (G\<turnstile>C\<preceq>C D)"
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   268
apply (rule iffI)
23757
087b0a241557 - Renamed inductive2 to inductive
berghofe
parents: 22597
diff changeset
   269
apply (ind_cases "G\<turnstile>Class C \<preceq> Class D")
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   270
apply (auto elim: widen.subcls)
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   271
done
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   272
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 13090
diff changeset
   273
lemma widen_NT_Class [simp]: "G \<turnstile> T \<preceq> NT \<Longrightarrow> G \<turnstile> T \<preceq> Class D"
23757
087b0a241557 - Renamed inductive2 to inductive
berghofe
parents: 22597
diff changeset
   274
by (ind_cases "G \<turnstile> T \<preceq> NT",  auto)
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 13090
diff changeset
   275
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 13090
diff changeset
   276
lemma cast_PrimT_RefT [iff]: "(G\<turnstile>PrimT pT\<preceq>? RefT rT) = False"
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 13090
diff changeset
   277
apply (rule iffI)
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20970
diff changeset
   278
apply (erule cast.cases)
14045
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 13090
diff changeset
   279
apply auto
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 13090
diff changeset
   280
done
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 13090
diff changeset
   281
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 13090
diff changeset
   282
lemma cast_RefT: "G \<turnstile> C \<preceq>? Class D \<Longrightarrow> \<exists> rT. C = RefT rT"
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 13090
diff changeset
   283
apply (erule cast.cases)
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 13090
diff changeset
   284
apply simp apply (erule widen.cases) 
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 13090
diff changeset
   285
apply auto
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 13090
diff changeset
   286
done
a34d89ce6097 Introduced distinction wf_prog vs. ws_prog
streckem
parents: 13090
diff changeset
   287
12517
360e3215f029 exception merge, cleanup, tuned
kleing
parents: 12443
diff changeset
   288
theorem widen_trans[trans]: "\<lbrakk>G\<turnstile>S\<preceq>U; G\<turnstile>U\<preceq>T\<rbrakk> \<Longrightarrow> G\<turnstile>S\<preceq>T"
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   289
proof -
12517
360e3215f029 exception merge, cleanup, tuned
kleing
parents: 12443
diff changeset
   290
  assume "G\<turnstile>S\<preceq>U" thus "\<And>T. G\<turnstile>U\<preceq>T \<Longrightarrow> G\<turnstile>S\<preceq>T"
11987
bf31b35949ce tuned induct proofs;
wenzelm
parents: 11372
diff changeset
   291
  proof induct
12517
360e3215f029 exception merge, cleanup, tuned
kleing
parents: 12443
diff changeset
   292
    case (refl T T') thus "G\<turnstile>T\<preceq>T'" .
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   293
  next
11987
bf31b35949ce tuned induct proofs;
wenzelm
parents: 11372
diff changeset
   294
    case (subcls C D T)
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   295
    then obtain E where "T = Class E" by (blast dest: widen_Class)
22271
51a80e238b29 Adapted to new inductive definition package.
berghofe
parents: 20970
diff changeset
   296
    with subcls show "G\<turnstile>Class C\<preceq>T" by auto
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   297
  next
11987
bf31b35949ce tuned induct proofs;
wenzelm
parents: 11372
diff changeset
   298
    case (null R RT)
11026
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   299
    then obtain rt where "RT = RefT rt" by (blast dest: widen_RefT)
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   300
    thus "G\<turnstile>NT\<preceq>RT" by auto
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   301
  qed
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   302
qed
a50365d21144 converted to Isar, simplifying recursion on class hierarchy
oheimb
parents: 10613
diff changeset
   303
8011
d14c4e9e9c8e *** empty log message ***
nipkow
parents:
diff changeset
   304
end