1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
|
(in-package "M5")
#|
factorial-jvm-correct.lisp
~~~~~~~~~~~~~~~~~~~~~~~~~~
Author: Sandip Ray
Date: Mon Jan 10 04:46:19 2005
In this book I show the use of defsimulate to prove the correctness of a
recursive factorial program written in JVM. The JVM model is M5, which has been
developed by Robert Krug, Hanbing Liu, and J Moore at UT Austin. They have
proved various theorems about this model, but mostly using the so-called "clock
functions". J has actually also proved partial correctness theorems using the
method referred to in "Inductive Assertions and Operational Semantics".
|#
;; The book is included to get the class file in.
(include-book "../m5/demo")
(include-book "ordinals/ordinals" :dir :system)
;; Here is the definition of mathematical factorial function, referred to as
;; mfact in the paper.
(defun fact (n)
(if (zp n) 1
(* n (fact (1- n)))))
;; I need to specify some stuff first before we can get into the situation when
;; we can talk about precondition, postcondition, etc. The first thing is
;; really technical, and might even be considered stupidity on my part. I allow
;; step to take only one argument, namely the current state, in the macro
;; implementation. But M5 programs take two arguments, namely the state and the
;; thread to step. This is because M5 is really a multithraded and
;; non-deterministic model, while our technique affords verification of
;; sequential [deterministic] programs. To reconcile this, I will specify a
;; particular thread for this entire exercise.
(defstub th () => *)
(defun mono-step (s) (step (th) s))
(defun mono-run (s n) (if (zp n) s (mono-run (mono-step s) (1- n))))
;; OK so we are done with this little set of technicalities. Now I want to
;; specify the precondition, postcondition, cutpoints, etc. So what are these
;; predicates? I want to specify the precondition, postcondition, cutpoints,
;; and assertions. These are adapted from Moore's work with his "Inductive
;; Assertions and Operational Semantics" book, but modified to be applied to
;; the current method, and in addition, total correctness is proved.
;; The function sdepth here is used to specify the size of the recursion stack
;; which can then be used to indicate whether we are done with the run. In
;; other words I will start the recursive call specifying that the depth of the
;; stack initially is some depth d0 and at postcondition the depth must be <
;; d0.
(defun sdepth (stk)
(declare (xargs :hints (("Goal" :in-theory (enable pop)))))
(if (endp stk)
0
(+ 1 (sdepth (pop stk)))))
;; At depth k of recursion I must know that all the previous recursive calls
;; have been invoked correctly. This is specified by the fact-caller-framesp
;; function below. This specifies that the last k recursive calls are calls to
;; fact. So here it goes. This is simply picked from the corresponding
;; assertion in Moore's method relating inductive assertions and operational
;; semantics.
(defun fact-caller-framesp (cs n0 k)
(declare (xargs :measure (acl2-count k)))
(cond ((zp k) t)
((and (equal (pc (top cs)) 11)
(equal (program (top cs)) (cdddr *fact-def*))
(equal (sync-flg (top cs)) 'UNLOCKED)
(intp (nth 0 (locals (top cs))))
(equal (+ n0 (- k)) (- (nth 0 (locals (top cs))) 1))
(equal (nth 0 (locals (top cs)))
(top (stack (top cs)))))
(fact-caller-framesp (pop cs) n0 (- k 1)))
(t nil)))
;; The assertion for this program is specified pretty naturally. These are
;; adapted from J's book.
(defun fact-assertion (n0 d0 s)
(and (integerp d0)
(< 1 d0)
(equal (status (th) s) 'scheduled)
(cond
((< (sdepth (call-stack (th) s)) d0)
(equal (top (stack (top-frame (th) s)))
(int-fix (fact n0))))
(t
(let ((n (nth 0 (locals (top-frame (th) s)))))
(and (equal (program (top-frame (th) s)) (cdddr *fact-def*))
(equal (lookup-method "fact" "Demo" (class-table s))
*fact-def*)
(equal (sync-flg (top-frame (th) s)) 'UNLOCKED)
(intp n0)
(intp n)
(<= 0 n)
(<= n n0)
(equal (sdepth (call-stack (th) s)) (+ d0 (- n0 n)))
(fact-caller-framesp (pop (call-stack (th) s)) n0 (- n0 n))
(case (pc (top-frame (th) s))
(0 t)
((12 14)
(equal (top (stack (top-frame (th) s)))
(int-fix (fact n))))
(t nil))))))))
;; OK so what are the cutpoints? If I am done that is if I am at a recursive
;; call of depth < d0 of course then I am in a cutpoint. Otherwise I the
;; cutpoint is is I am just invoking a call [pc=0], or returning from a call
;; [pc=12,14]. Note that while this is probably not very important, we can
;; split the assertion for pc=12 and pc=14 if necessary by specifying that at
;; pc=14 we are returning from a call of fact(0), and at pc=12, we are
;; returning from fact(n) with n > 0.
;; Note: You might be surprised to see the (sdepth (call-stack (th) s)) > 0
;; condition in the cutpoint statement. You might wonder: What is this doing
;; here? This is actually around for technical reason. The technical reason is
;; that I want dummy not to be a cutpoint, but here I have defined dummy to be
;; nil.
(defun fact-cutpoint (n0 d0 s)
(declare (ignore n0))
(and (> (sdepth (call-stack (th) s)) 0)
(or (< (sdepth (call-stack (th) s)) d0)
(equal (pc (top-frame (th) s)) 0)
(equal (pc (top-frame (th) s)) 12)
(equal (pc (top-frame (th) s)) 14))))
;; Here is the exitpoint. What I want here is that the depth of the call stack
;; is smaller than d0. This basically will say that I have returned from the
;; call that I started with.
(defun fact-exitpoint (n0 d0 s)
(declare (ignore n0))
(and (< (sdepth (call-stack (th) s)) d0)
(> (sdepth (call-stack (th) s)) 0)))
;; The precondition must just say that I am in a state with d0 being equal to
;; the stack height, and I am poised to execute the factorial of n0. The latter
;; is specified by saying that the locals at the top frame of thread (th) is
;; n0.
(defun fact-precondition (n0 d0 s)
(and (intp n0)
(<= 0 n0)
(integerp d0)
(< 1 d0)
(equal (pc (top-frame (th) s)) 0)
(equal (locals (top-frame (th) s)) (list n0))
(equal (program (top-frame (th) s))
(cdddr *fact-def*))
(equal (status (th) s) 'scheduled)
(equal (sync-flg (top-frame (th) s)) 'unlocked)
(equal (lookup-method "fact" "Demo" (class-table s))
*fact-def*)
(equal (sdepth (call-stack (th) s)) d0)))
;; And of course the postcondition is merely stating that the thing that is
;; standing at the top of the stack is the factorial.
(defun fact-postcondition (n0 d0 s)
(declare (ignore d0))
(equal (top (stack (top-frame (th) s)))
(int-fix (fact n0))))
;; What is the default state? Well, just nil!!!
(defun dummy-state () nil)
;; And that is it!!! I of course need to do very little to invoke the method,
;; and that is the beauty of the method itself. BTW I have added the disabling
;; of the lookup method itself merely for efficiency, since otherwise there is
;; a case split on whether we have it in the current class or should look up in
;; the superclasses.
(in-theory (disable lookup-method))
;; OK let's see how my macro performs here.....:->
(include-book "defsimulate")
;; You see why I added the thms and hints. If I simply
;; open up step to get what I want, but that is sometimes inefficient and
;; causes a huge case split. Especially in the context of a model like JVM you
;; dont want to do that. You need specialized openers which are actually pretty
;; mechanical. And here I show one. This opener is just specifying to open up
;; the function when the pc is known. Notice that I can also provide the right
;; hints to the macro. Isn't this cool? Of course this is just to show that
;; these facilities exist with the macro in case somebody wants to use
;; them. For this particular program it is possible to avoid both with the
;; right syntaxp hypothesis. But this need not be possible in general, and I
;; like to provide such control in software I write.
(acl2::defsimulate mono-step
:default dummy-state
:cutpoint fact-cutpoint
:pre fact-precondition
:post fact-postcondition
:assertion fact-assertion
:arity 3
:exitpoint fact-exitpoint
:exitsteps fact-exitsteps
:run mono-run
:thms
((local
(defthm cutpoint-opener
(implies (and (equal pc (pc (top-frame (th) s)))
(syntaxp (quotep pc)))
(equal (acl2::concrete-nextt-cutpoint n0 d0 s)
(if (fact-cutpoint n0 d0 s) s
(acl2::concrete-nextt-cutpoint
n0 d0
(mono-step s))))))))
:hints (("Goal"
:cases ((equal (pc (top-frame (th) acl2::s2)) 0)
(equal (pc (top-frame (th) acl2::s2)) 12)
(equal (pc (top-frame (th) acl2::s2)) 14)))
("Subgoal 2"
:in-theory (disable fact-caller-framesp)
:use ((:instance (:definition fact-caller-framesp)
(cs (pop
(CADR (ASSOC-EQUAL (TH)
(THREAD-TABLE acl2::S2)))))
(n0 acl2::s0)
(k (- acl2::s0 (car (locals (top-frame (th) acl2::s2))))))))
("Subgoal 1"
:in-theory (disable fact-caller-framesp)
:use ((:instance (:definition fact-caller-framesp)
(cs (pop
(CADR (ASSOC-EQUAL (TH)
(THREAD-TABLE acl2::S2)))))
(n0 acl2::s0)
(k (- acl2::s0 (car (locals (top-frame (th) acl2::s2))))))))))
;; Finally for total correctness here is the rank function. The function is
;; handles recursion. It is meant so that
;; the call to ther recursion is given a slightly larger ordinal than the
;; return. It should be thought more as a pair giving more priority to the calls than
;; returns. This is also illustrative of the kind of ranking functions one needs
;; to write for recursive methods.
(defun factorial-rank (n0 d0 s)
(if (fact-exitpoint n0 d0 s)
0
(acl2::o+ (acl2::o* (acl2::omega)
(if (and (equal (pc (top-frame (th) s)) 0)
(>= (sdepth (call-stack (th) s)) d0))
(nfix (+ 2 (nth 0 (locals (top-frame (th) s)))))
1))
(sdepth (call-stack (th) s)))))
;; This is the same theorem about ordinals that we used for tiny-fib. I really
;; believe that this should actually go to where it belongs, namely the
;; ordinals book.
(local
(defthm l1
(implies (and (natp a)
(natp b)
(natp c)
(natp d)
(< a b))
(acl2::o< (acl2::o+ (acl2::o* (acl2::omega) a) c)
(acl2::o+ (acl2::o* (acl2::omega) b) d)))
:hints (("goal" :cases ((equal a 0))))))
;; And now, the magic of my macro....:->
(acl2::defsimulate mono-step
:default dummy-state
:cutpoint fact-cutpoint
:pre fact-precondition
:post fact-postcondition
:assertion fact-assertion
:mode :total
:arity 3
:measure factorial-rank
:exitpoint fact-exitpoint
:exitsteps fact-total-exitsteps
:run mono-run
:thms
((local
(defthm cutpoint-opener
(implies (and (equal pc (pc (top-frame (th) s)))
(syntaxp (quotep pc)))
(equal (acl2::concrete-nextt-cutpoint n0 d0 s)
(if (fact-cutpoint n0 d0 s) s
(acl2::concrete-nextt-cutpoint
n0 d0
(mono-step s))))))))
:hints (("Goal"
:cases ((equal (pc (top-frame (th) acl2::s2)) 0)
(equal (pc (top-frame (th) acl2::s2)) 12)
(equal (pc (top-frame (th) acl2::s2)) 14)))
("Subgoal 2"
:in-theory (disable fact-caller-framesp)
:use ((:instance (:definition fact-caller-framesp)
(cs (pop
(CADR (ASSOC-EQUAL (TH)
(THREAD-TABLE acl2::S2)))))
(n0 acl2::s0)
(k (- acl2::s0 (car (locals (top-frame (th) acl2::s2))))))))
("Subgoal 1"
:in-theory (disable fact-caller-framesp)
:use ((:instance (:definition fact-caller-framesp)
(cs (pop
(CADR (ASSOC-EQUAL (TH)
(THREAD-TABLE acl2::S2)))))
(n0 acl2::s0)
(k (- acl2::s0 (car (locals (top-frame (th) acl2::s2))))))))))
|