author | kleing |
Thu, 21 Sep 2000 19:25:57 +0200 | |
changeset 10056 | 9f84ffa4a8d0 |
parent 10042 | 7164dc0d24d8 |
child 10061 | fe82134773dc |
permissions | -rw-r--r-- |
8011 | 1 |
(* Title: HOL/MicroJava/J/Eval.thy |
2 |
ID: $Id$ |
|
3 |
Author: David von Oheimb |
|
4 |
Copyright 1999 Technische Universitaet Muenchen |
|
5 |
||
6 |
Operational evaluation (big-step) semantics of the |
|
7 |
execution of Java expressions and statements |
|
8 |
*) |
|
9 |
||
9346
297dcbf64526
re-structuring MicroJava; added Example; corrected := syntax; simplfied cast
oheimb
parents:
9240
diff
changeset
|
10 |
Eval = State + WellType + |
8011 | 11 |
|
12 |
consts |
|
10042 | 13 |
eval :: "java_mb prog => (xstate \\<times> expr \\<times> val \\<times> xstate) set" |
14 |
evals :: "java_mb prog => (xstate \\<times> expr list \\<times> val list \\<times> xstate) set" |
|
15 |
exec :: "java_mb prog => (xstate \\<times> stmt \\<times> xstate) set" |
|
8011 | 16 |
|
17 |
syntax |
|
10056 | 18 |
eval :: "[java_mb prog,xstate,expr,val,xstate] => bool " |
19 |
("_\\<turnstile>_ -_\\<succ>_-> _"[51,82,82,82,82]81) |
|
8082 | 20 |
evals:: "[java_mb prog,xstate,expr list, |
10056 | 21 |
val list,xstate] => bool " |
22 |
("_\\<turnstile>_ -_[\\<succ>]_-> _"[51,82,51,51,82]81) |
|
23 |
exec :: "[java_mb prog,xstate,stmt, xstate] => bool " |
|
24 |
("_\\<turnstile>_ -_-> _" [51,82,82, 82]81) |
|
8011 | 25 |
|
26 |
translations |
|
10042 | 27 |
"G\\<turnstile>s -e \\<succ> v-> (x,s')" <= "(s, e, v, x, s') \\<in> eval G" |
10056 | 28 |
"G\\<turnstile>s -e \\<succ> v-> s' " == "(s, e, v, s') \\<in> eval G" |
10042 | 29 |
"G\\<turnstile>s -e[\\<succ>]v-> (x,s')" <= "(s, e, v, x, s') \\<in> evals G" |
10056 | 30 |
"G\\<turnstile>s -e[\\<succ>]v-> s' " == "(s, e, v, s') \\<in> evals G" |
31 |
"G\\<turnstile>s -c -> (x,s')" <= "(s, c, x, s') \\<in> exec G" |
|
32 |
"G\\<turnstile>s -c -> s' " == "(s, c, s') \\<in> exec G" |
|
8011 | 33 |
|
34 |
inductive "eval G" "evals G" "exec G" intrs |
|
35 |
||
36 |
(* evaluation of expressions *) |
|
37 |
||
38 |
(* cf. 15.5 *) |
|
10056 | 39 |
XcptE "G\\<turnstile>(Some xc,s) -e\\<succ>arbitrary-> (Some xc,s)" |
8011 | 40 |
|
41 |
(* cf. 15.8.1 *) |
|
10056 | 42 |
NewC "[| h = heap s; (a,x) = new_Addr h; |
43 |
h'= h(a\\<mapsto>(C,init_vars (fields (G,C)))) |] ==> |
|
44 |
G\\<turnstile>Norm s -NewC C\\<succ>Addr a-> c_hupd h' (x,s)" |
|
8011 | 45 |
|
46 |
(* cf. 15.15 *) |
|
10056 | 47 |
Cast "[| G\\<turnstile>Norm s0 -e\\<succ>v-> (x1,s1); |
48 |
x2 = raise_if (\\<not> cast_ok G C (heap s1) v) ClassCast x1 |] ==> |
|
49 |
G\\<turnstile>Norm s0 -Cast C e\\<succ>v-> (x2,s1)" |
|
8011 | 50 |
|
51 |
(* cf. 15.7.1 *) |
|
10056 | 52 |
Lit "G\\<turnstile>Norm s -Lit v\\<succ>v-> Norm s" |
8011 | 53 |
|
10056 | 54 |
BinOp "[| G\\<turnstile>Norm s -e1\\<succ>v1-> s1; |
55 |
G\\<turnstile>s1 -e2\\<succ>v2-> s2; |
|
56 |
v = (case bop of Eq => Bool (v1 = v2) |
|
57 |
| Add => Intg (the_Intg v1 + the_Intg v2)) |] ==> |
|
58 |
G\\<turnstile>Norm s -BinOp bop e1 e2\\<succ>v-> s2" |
|
9240 | 59 |
|
8011 | 60 |
(* cf. 15.13.1, 15.2 *) |
10056 | 61 |
LAcc "G\\<turnstile>Norm s -LAcc v\\<succ>the (locals s v)-> Norm s" |
8011 | 62 |
|
63 |
(* cf. 15.25.1 *) |
|
10056 | 64 |
LAss "[| G\\<turnstile>Norm s -e\\<succ>v-> (x,(h,l)); |
65 |
l' = (if x = None then l(va\\<mapsto>v) else l) |] ==> |
|
66 |
G\\<turnstile>Norm s -va::=e\\<succ>v-> (x,(h,l'))" |
|
8011 | 67 |
|
68 |
||
69 |
(* cf. 15.10.1, 15.2 *) |
|
10056 | 70 |
FAcc "[| G\\<turnstile>Norm s0 -e\\<succ>a'-> (x1,s1); |
71 |
v = the (snd (the (heap s1 (the_Addr a'))) (fn,T)) |] ==> |
|
72 |
G\\<turnstile>Norm s0 -{T}e..fn\\<succ>v-> (np a' x1,s1)" |
|
8011 | 73 |
|
74 |
(* cf. 15.25.1 *) |
|
10056 | 75 |
FAss "[| G\\<turnstile> Norm s0 -e1\\<succ>a'-> (x1,s1); a = the_Addr a'; |
76 |
G\\<turnstile>(np a' x1,s1) -e2\\<succ>v -> (x2,s2); |
|
77 |
h = heap s2; (c,fs) = the (h a); |
|
78 |
h' = h(a\\<mapsto>(c,(fs((fn,T)\\<mapsto>v)))) |] ==> |
|
79 |
G\\<turnstile>Norm s0 -{T}e1..fn:=e2\\<succ>v-> c_hupd h' (x2,s2)" |
|
8011 | 80 |
|
81 |
(* cf. 15.11.4.1, 15.11.4.2, 15.11.4.4, 15.11.4.5, 14.15 *) |
|
10056 | 82 |
Call "[| G\\<turnstile>Norm s0 -e\\<succ>a'-> s1; a = the_Addr a'; |
83 |
G\\<turnstile>s1 -ps[\\<succ>]pvs-> (x,(h,l)); dynT = fst (the (h a)); |
|
84 |
(md,rT,pns,lvars,blk,res) = the (method (G,dynT) (mn,pTs)); |
|
85 |
G\\<turnstile>(np a' x,(h,(init_vars lvars)(pns[\\<mapsto>]pvs)(This\\<mapsto>a'))) -blk-> s3; |
|
86 |
G\\<turnstile> s3 -res\\<succ>v -> (x4,s4) |] ==> |
|
87 |
G\\<turnstile>Norm s0 -e..mn({pTs}ps)\\<succ>v-> (x4,(heap s4,l))" |
|
8011 | 88 |
|
89 |
||
90 |
(* evaluation of expression lists *) |
|
91 |
||
92 |
(* cf. 15.5 *) |
|
10056 | 93 |
XcptEs "G\\<turnstile>(Some xc,s) -e[\\<succ>]arbitrary-> (Some xc,s)" |
8011 | 94 |
|
95 |
(* cf. 15.11.??? *) |
|
10056 | 96 |
Nil "G\\<turnstile>Norm s0 -[][\\<succ>][]-> Norm s0" |
8011 | 97 |
|
98 |
(* cf. 15.6.4 *) |
|
10056 | 99 |
Cons "[| G\\<turnstile>Norm s0 -e \\<succ> v -> s1; |
100 |
G\\<turnstile> s1 -es[\\<succ>]vs-> s2 |] ==> |
|
101 |
G\\<turnstile>Norm s0 -e#es[\\<succ>]v#vs-> s2" |
|
8011 | 102 |
|
103 |
(* execution of statements *) |
|
104 |
||
105 |
(* cf. 14.1 *) |
|
10056 | 106 |
XcptS "G\\<turnstile>(Some xc,s) -s0-> (Some xc,s)" |
8011 | 107 |
|
108 |
(* cf. 14.5 *) |
|
10056 | 109 |
Skip "G\\<turnstile>Norm s -Skip-> Norm s" |
8011 | 110 |
|
111 |
(* cf. 14.7 *) |
|
10056 | 112 |
Expr "[| G\\<turnstile>Norm s0 -e\\<succ>v-> s1 |] ==> |
113 |
G\\<turnstile>Norm s0 -Expr e-> s1" |
|
8011 | 114 |
|
115 |
(* cf. 14.2 *) |
|
10056 | 116 |
Comp "[| G\\<turnstile>Norm s0 -s -> s1; |
117 |
G\\<turnstile> s1 -t -> s2|] ==> |
|
118 |
G\\<turnstile>Norm s0 -(s;; t)-> s2" |
|
8011 | 119 |
|
120 |
(* cf. 14.8.2 *) |
|
10056 | 121 |
Cond "[| G\\<turnstile>Norm s0 -e \\<succ>v-> s1; |
122 |
G\\<turnstile> s1 -(if the_Bool v then s else t)-> s2|] ==> |
|
123 |
G\\<turnstile>Norm s0 -(If(e) s Else t)-> s2" |
|
8011 | 124 |
|
125 |
(* cf. 14.10, 14.10.1 *) |
|
10056 | 126 |
Loop "[| G\\<turnstile>Norm s0 -(If(e) (s;; While(e) s) Else Skip)-> s1 |] ==> |
127 |
G\\<turnstile>Norm s0 -(While(e) s)-> s1" |
|
8011 | 128 |
|
129 |
end |