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
|
(in-package "ACL2")
(include-book "djvm-model")
(include-book "bcv-simple-model")
(include-book "generic")
(include-book "consistent-state-properties")
(include-book "bcv-method-properties")
;--- EXPORT ----
(encapsulate ()
(local (include-book "djvm-PUSH"))
(defthm consistent-state-preserved-by-DJVM-PUSH
(implies (and (consistent-state st)
(equal (next-inst st) inst)
(equal (op-code inst) 'PUSH)
(djvm-check-PUSH inst st))
(consistent-state
(djvm-execute-PUSH inst st)))))
;;(i-am-here) ;; Mon Nov 21 10:57:11 2005
(defthm bcv-simple-inst-implies-next-pc-bounded-PUSH
(implies (and (bcv-simple-inst pc inst sig-vector)
(equal (g 'pc (cdr (assoc-equal pc sig-vector))) pc)
(equal (op-code inst) 'PUSH))
(assoc-equal (+ 1 pc) sig-vector)))
(local (in-theory (disable collect-witness-bcv-method)))
(defthm bcv-simple-inst-implies-next-pc-bounded-PUSH-specific
(implies (and (bcv-simple-inst pc (next-inst st)
(collect-witness-bcv-method
(current-method st)
(g 'method-table st)))
(equal (g 'pc (cdr (assoc-equal pc
(collect-witness-bcv-method
(current-method st)
(g 'method-table st)))))
pc)
(equal (op-code (next-inst st)) 'PUSH))
(assoc-equal (+ 1 pc) (collect-witness-bcv-method
(current-method st)
(g 'method-table st)))))
(local (in-theory (disable current-method consistent-state
collect-witness-bcv-method
bcv-simple-inst next-inst)))
(defthm bcv-simple-check-push-implies-djvm-check
(IMPLIES (AND (CONSISTENT-STATE DJVM-S)
(equal (op-code (next-inst djvm-s)) 'PUSH)
(BCV-SIMPLE-CHECK-PUSH (next-inst djvm-s)
(EXTRACT-SIG-FRAME (CAR (G 'CALL-STACK DJVM-S))
(G 'METHOD-TABLE DJVM-S))))
(DJVM-CHECK-PUSH (next-inst djvm-s) djvm-s))
:hints (("Goal" :in-theory (disable consistent-state))))
|