src/HOL/IMP/AbsInt0_fun.thy
author nipkow
Thu, 15 Sep 2011 09:44:08 +0200
changeset 44932 7c93ee993cae
parent 44923 b80108b346a9
child 44944 f136409c2cef
permissions -rw-r--r--
revised AbsInt and added widening and narrowing
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
     1
(* Author: Tobias Nipkow *)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
     2
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
     3
header "Abstract Interpretation"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
     4
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
     5
theory AbsInt0_fun
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
     6
imports "~~/src/HOL/ex/Interpretation_with_Defs" Big_Step
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
     7
begin
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
     8
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
     9
subsection "Orderings"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    10
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    11
class preord =
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    12
fixes le :: "'a \<Rightarrow> 'a \<Rightarrow> bool" (infix "\<sqsubseteq>" 50)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    13
assumes le_refl[simp]: "x \<sqsubseteq> x"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    14
and le_trans: "x \<sqsubseteq> y \<Longrightarrow> y \<sqsubseteq> z \<Longrightarrow> x \<sqsubseteq> z"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    15
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    16
text{* Note: no antisymmetry. Allows implementations where some abstract
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    17
element is implemented by two different values @{prop "x \<noteq> y"}
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    18
such that @{prop"x \<sqsubseteq> y"} and @{prop"y \<sqsubseteq> x"}. Antisymmetry is not
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    19
needed because we never compare elements for equality but only for @{text"\<sqsubseteq>"}.
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    20
*}
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    21
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    22
class SL_top = preord +
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    23
fixes join :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "\<squnion>" 65)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    24
fixes Top :: "'a"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    25
assumes join_ge1 [simp]: "x \<sqsubseteq> x \<squnion> y"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    26
and join_ge2 [simp]: "y \<sqsubseteq> x \<squnion> y"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    27
and join_least: "x \<sqsubseteq> z \<Longrightarrow> y \<sqsubseteq> z \<Longrightarrow> x \<squnion> y \<sqsubseteq> z"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    28
and top[simp]: "x \<sqsubseteq> Top"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    29
begin
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    30
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    31
lemma join_le_iff[simp]: "x \<squnion> y \<sqsubseteq> z \<longleftrightarrow> x \<sqsubseteq> z \<and> y \<sqsubseteq> z"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    32
by (metis join_ge1 join_ge2 join_least le_trans)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    33
44932
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
    34
fun iter :: "nat \<Rightarrow> ('a \<Rightarrow> 'a) \<Rightarrow> 'a \<Rightarrow> 'a" where
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
    35
"iter 0 f _ = Top" |
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
    36
"iter (Suc n) f x = (if f x \<sqsubseteq> x then x else iter n f (f x))"
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    37
44932
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
    38
lemma iter_pfp: "f(iter n f x) \<sqsubseteq> iter n f x"
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    39
apply (induct n arbitrary: x)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    40
 apply (simp)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    41
apply (simp)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    42
done
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    43
44932
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
    44
definition iter_above :: "nat \<Rightarrow> ('a \<Rightarrow> 'a) \<Rightarrow> 'a \<Rightarrow> 'a" where
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
    45
"iter_above n f x0 = iter n (\<lambda>x. x0 \<squnion> f x) x0"
44923
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
    46
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
    47
lemma iter_above_pfp:
44932
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
    48
shows "f(iter_above n f x0) \<sqsubseteq> iter_above n f x0" and "x0 \<sqsubseteq> iter_above n f x0"
44923
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
    49
using iter_pfp[of "\<lambda>x. x0 \<squnion> f x"]
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
    50
by(auto simp add: iter_above_def)
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
    51
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
    52
text{* So much for soundness. But how good an approximation of the post-fixed
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
    53
point does @{const iter_above} yield? *}
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
    54
44932
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
    55
lemma iter_funpow: "iter n f x \<noteq> Top \<Longrightarrow> \<exists>k. iter n f x = (f^^k) x"
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    56
apply(induct n arbitrary: x)
44923
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
    57
 apply simp
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    58
apply (auto)
44932
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
    59
 apply(metis funpow.simps(1) id_def)
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    60
by (metis funpow.simps(2) funpow_swap1 o_apply)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    61
44923
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
    62
text{* For monotone @{text f}, @{term "iter_above f n x0"} yields the least
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
    63
post-fixed point above @{text x0}, unless it yields @{text Top}. *}
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    64
44923
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
    65
lemma iter_least_pfp:
44932
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
    66
assumes mono: "!!x y. x \<sqsubseteq> y \<Longrightarrow> f x \<sqsubseteq> f y" and "iter_above n f x0 \<noteq> Top"
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
    67
and "f p \<sqsubseteq> p" and "x0 \<sqsubseteq> p" shows "iter_above n f x0 \<sqsubseteq> p"
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    68
proof-
44923
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
    69
  let ?F = "\<lambda>x. x0 \<squnion> f x"
44932
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
    70
  obtain k where "iter_above n f x0 = (?F^^k) x0"
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
    71
    using iter_funpow `iter_above n f x0 \<noteq> Top`
44923
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
    72
    by(fastforce simp add: iter_above_def)
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    73
  moreover
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    74
  { fix n have "(?F^^n) x0 \<sqsubseteq> p"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    75
    proof(induct n)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    76
      case 0 show ?case by(simp add: `x0 \<sqsubseteq> p`)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    77
    next
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    78
      case (Suc n) thus ?case
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    79
        by (simp add: `x0 \<sqsubseteq> p`)(metis Suc assms(3) le_trans mono)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    80
    qed
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    81
  } ultimately show ?thesis by simp
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    82
qed
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    83
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    84
lemma chain: assumes "!!x y. x \<sqsubseteq> y \<Longrightarrow> f x \<sqsubseteq> f y"
44923
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
    85
shows "((\<lambda>x. x0 \<squnion> f x)^^i) x0 \<sqsubseteq> ((\<lambda>x. x0 \<squnion> f x)^^(i+1)) x0"
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    86
apply(induct i)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    87
 apply simp
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    88
apply simp
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    89
by (metis assms join_ge2 le_trans)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    90
44923
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
    91
lemma iter_above_almost_fp:
44932
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
    92
assumes mono: "!!x y. x \<sqsubseteq> y \<Longrightarrow> f x \<sqsubseteq> f y" and "iter_above n f x0 \<noteq> Top"
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
    93
shows "iter_above n f x0 \<sqsubseteq> x0 \<squnion> f(iter_above n f x0)"
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    94
proof-
44932
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
    95
  let ?p = "iter_above n f x0"
44923
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
    96
  obtain k where 1: "?p = ((\<lambda>x. x0 \<squnion> f x)^^k) x0"
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
    97
    using iter_funpow `?p \<noteq> Top`
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
    98
    by(fastforce simp add: iter_above_def)
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
    99
  thus ?thesis using chain mono by simp
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   100
qed
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   101
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   102
end
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   103
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   104
text{* The interface of abstract values: *}
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   105
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   106
locale Rep =
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   107
fixes rep :: "'a::SL_top \<Rightarrow> 'b set"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   108
assumes le_rep: "a \<sqsubseteq> b \<Longrightarrow> rep a \<subseteq> rep b"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   109
begin
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   110
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   111
abbreviation in_rep (infix "<:" 50) where "x <: a == x : rep a"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   112
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   113
lemma in_rep_join: "x <: a1 \<or> x <: a2 \<Longrightarrow> x <: a1 \<squnion> a2"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   114
by (metis SL_top_class.join_ge1 SL_top_class.join_ge2 le_rep subsetD)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   115
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   116
end
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   117
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   118
locale Val_abs = Rep rep
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   119
  for rep :: "'a::SL_top \<Rightarrow> val set" +
44932
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
   120
fixes num' :: "val \<Rightarrow> 'a"
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
   121
and plus' :: "'a \<Rightarrow> 'a \<Rightarrow> 'a"
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   122
assumes rep_num': "rep(num' n) = {n}"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   123
and rep_plus': "n1 <: a1 \<Longrightarrow> n2 <: a2 \<Longrightarrow> n1+n2 <: plus' a1 a2"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   124
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   125
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   126
instantiation "fun" :: (type, SL_top) SL_top
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   127
begin
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   128
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   129
definition "f \<sqsubseteq> g = (ALL x. f x \<sqsubseteq> g x)"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   130
definition "f \<squnion> g = (\<lambda>x. f x \<squnion> g x)"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   131
definition "Top = (\<lambda>x. Top)"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   132
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   133
lemma join_apply[simp]:
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   134
  "(f \<squnion> g) x = f x \<squnion> g x"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   135
by (simp add: join_fun_def)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   136
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   137
instance
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   138
proof
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   139
  case goal2 thus ?case by (metis le_fun_def preord_class.le_trans)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   140
qed (simp_all add: le_fun_def Top_fun_def)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   141
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   142
end
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   143
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   144
subsection "Abstract Interpretation Abstractly"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   145
44932
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
   146
text{* Abstract interpretation over abstract values. Abstract states are
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
   147
simply functions. The post-fixed point finder is parameterized over. *}
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
   148
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
   149
type_synonym 'a st = "name \<Rightarrow> 'a"
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   150
44932
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
   151
locale Abs_Int_Fun = Val_abs +
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
   152
fixes pfp_above :: "('a st \<Rightarrow> 'a st) \<Rightarrow> 'a st \<Rightarrow> 'a st"
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
   153
assumes pfp: "f(pfp_above f x0) \<sqsubseteq> pfp_above f x0"
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
   154
assumes above: "x0 \<sqsubseteq> pfp_above f x0"
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   155
begin
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   156
44932
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
   157
fun aval' :: "aexp \<Rightarrow> (name \<Rightarrow> 'a) \<Rightarrow> 'a" where
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   158
"aval' (N n) _ = num' n" |
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   159
"aval' (V x) S = S x" |
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   160
"aval' (Plus a1 a2) S = plus' (aval' a1 S) (aval' a2 S)"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   161
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   162
abbreviation fun_in_rep (infix "<:" 50) where
44923
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
   163
"f <: F == \<forall>x. f x <: F x"
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   164
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   165
lemma fun_in_rep_le: "(s::state) <: S \<Longrightarrow> S \<sqsubseteq> T \<Longrightarrow> s <: T"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   166
by (metis le_fun_def le_rep subsetD)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   167
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   168
lemma aval'_sound: "s <: S \<Longrightarrow> aval a s <: aval' a S"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   169
by (induct a) (auto simp: rep_num' rep_plus')
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   170
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   171
fun AI :: "com \<Rightarrow> (name \<Rightarrow> 'a) \<Rightarrow> (name \<Rightarrow> 'a)" where
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   172
"AI SKIP S = S" |
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   173
"AI (x ::= a) S = S(x := aval' a S)" |
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   174
"AI (c1;c2) S = AI c2 (AI c1 S)" |
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   175
"AI (IF b THEN c1 ELSE c2) S = (AI c1 S) \<squnion> (AI c2 S)" |
44932
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
   176
"AI (WHILE b DO c) S = pfp_above (AI c) S"
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   177
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   178
lemma AI_sound: "(c,s) \<Rightarrow> t \<Longrightarrow> s <: S0 \<Longrightarrow> t <: AI c S0"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   179
proof(induct c arbitrary: s t S0)
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44656
diff changeset
   180
  case SKIP thus ?case by fastforce
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   181
next
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   182
  case Assign thus ?case by (auto simp: aval'_sound)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   183
next
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   184
  case Semi thus ?case by auto
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   185
next
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   186
  case If thus ?case by(auto simp: in_rep_join)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   187
next
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   188
  case (While b c)
44932
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
   189
  let ?P = "pfp_above (AI c) S0"
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   190
  { fix s t have "(WHILE b DO c,s) \<Rightarrow> t \<Longrightarrow> s <: ?P \<Longrightarrow> t <: ?P"
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   191
    proof(induct "WHILE b DO c" s t rule: big_step_induct)
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   192
      case WhileFalse thus ?case by simp
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   193
    next
44923
b80108b346a9 cleand up AbsInt fixpoint iteration; tuned syntax
nipkow
parents: 44890
diff changeset
   194
      case WhileTrue thus ?case by(metis While.hyps pfp fun_in_rep_le)
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   195
    qed
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   196
  }
44932
7c93ee993cae revised AbsInt and added widening and narrowing
nipkow
parents: 44923
diff changeset
   197
  with fun_in_rep_le[OF `s <: S0` above]
44656
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   198
  show ?case by (metis While(2) AI.simps(5))
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   199
qed
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   200
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   201
end
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   202
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   203
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   204
text{* Problem: not executable because of the comparison of abstract states,
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   205
i.e. functions, in the post-fixedpoint computation. Need to implement
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   206
abstract states concretely. *}
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   207
22bbd0d1b943 Added Abstract Interpretation theories
nipkow
parents:
diff changeset
   208
end