File: consistent-state-properties.lisp

package info (click to toggle)
acl2 8.6%2Bdfsg-2
  • links: PTS
  • area: main
  • in suites: trixie
  • size: 1,111,420 kB
  • sloc: lisp: 17,818,294; java: 125,359; python: 28,122; javascript: 23,458; cpp: 18,851; ansic: 11,569; perl: 7,678; xml: 5,591; sh: 3,976; makefile: 3,833; ruby: 2,633; yacc: 1,126; ml: 763; awk: 295; csh: 233; lex: 197; php: 178; tcl: 49; asm: 23; haskell: 17
file content (664 lines) | stat: -rw-r--r-- 27,170 bytes parent folder | download | duplicates (2)
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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
(in-package "ACL2")
(include-book "consistent-state")
(include-book "bcv-simple-model")
(include-book "bcv-model")

(defthm consistent-call-stack1-top-frame-pc-modication-no-change
  (implies (consistent-call-stack1 call-stack top-frame method-table)
           (consistent-call-stack1 call-stack (s 'pc anypc top-frame)
                                   method-table)))


(defthm consistent-call-stack1-top-frame-opstack-modication-no-change
  (implies (consistent-call-stack1 call-stack top-frame method-table)
           (consistent-call-stack1 call-stack (s 'op-stack anyopstack top-frame)
                                   method-table)))


(defthm consistent-state-consistent-call-stack1
  (implies (CONSISTENT-STATE ST)
           (CONSISTENT-CALL-STACK1 (CDR (G 'CALL-STACK ST))
                                   (car (g 'call-stack st))
                                   (g 'method-table st)))
  :hints (("Goal" :in-theory (enable consistent-state))))



(defthm consistent-state-consistent-call-stack1-f
  (implies (CONSISTENT-STATE ST)
           (CONSISTENT-CALL-STACK1 (CDR (G 'CALL-STACK ST))
                                   (car (g 'call-stack st))
                                   (g 'method-table st)))
  :hints (("Goal" :in-theory (enable consistent-state)))
  :rule-classes :forward-chaining)


;----------------------------------------------------------------------

(encapsulate () 
  (local (include-book "bcv-succeed-implies-bcv-simple-succeed"))
  (defthm bcv-succeed-implies-bcv-simple-succeed
  (implies (and (bcv-method method method-table)
                (equal method (binding (g 'method-name method)
                                       method-table))
                (bcv-verified-method-table method-table))
           (bcv-simple-method
            (s 'sig-vector
               (collect-witness-bcv-method
                method method-table)
               method)
            method-table))))

(defthm bcv-verified-method-table1-is-all-method-verified1-normalize
  (equal (BCV-VERIFIED-METHOD-TABLE1 method-table1 method-table)
         (all-method-verified1 method-table1 method-table)))


(defthm bcv-verified-method-table-is-all-method-verified-normalize
  (equal (BCV-VERIFIED-METHOD-TABLE method-table)
         (all-method-verified method-table)))


(defthm consistent-state-implies-current-method-verified
  (implies (and (consistent-state st)
                (equal (g 'method-table st) method-table))
           (bcv-simple-method (s 'sig-vector (collect-witness-bcv-method
                                              (current-method st) method-table)
                                 (current-method st))
                       method-table))
  :hints (("Goal" :in-theory (disable bcv-simple-method bcv-method 
                                      collect-witness-bcv-method))))

;----------------------------------------------------------------------

(local (include-book "bcv-simple-method-properties"))

(local (in-theory (disable bcv-simple-check-step-pre extract-sig-frame
                           current-method next-inst consistent-state)))



(local (include-book "generic"))

(local 
 (defthm consistent-state-consistent-callee-frame
   (implies (consistent-state st)
            (consistent-callee-frame 
               (car (g 'call-stack st))
               (g 'method-table st)))
   :hints (("Goal" :in-theory (e/d (consistent-state)
                                   (consistent-callee-frame))))))


(local 
 (defthm current-method-normalize
   (equal (CDR (ASSOC-EQUAL (G 'METHOD-NAME
                               (CAR (G 'CALL-STACK ST)))
                            (G 'METHOD-TABLE ST)))
          (current-method st))
   :hints (("Goal" :in-theory (enable current-method)))))


(defthm consistent-state-sig-frame-compatible
  (implies (consistent-state st)
           (sig-frame-compatible
            (extract-sig-frame 
             (car (g 'call-stack st))
             (g 'method-table st))
            (cdr (assoc-equal (g 'pc (car (g 'call-stack st)))
                              (collect-witness-bcv-method 
                               (current-method st) 
                               (g 'method-table st))))))
  :hints (("Goal" :in-theory (e/d () (sig-frame-compatible
                                      consistent-state-consistent-callee-frame))
           :use ((:instance consistent-state-consistent-callee-frame)))))
                                   


(local (in-theory (disable sig-frame-compatible collect-witness-bcv-method)))

;; (i-am-here) ;; Wed Nov  2 22:43:41 2005

(defthm consistent-state-bcv-simple-check-step-pre-if-pc-in-range
  (implies (and (consistent-state st)
                (pc-in-range st))
           (bcv-simple-check-step-pre 
            (next-inst st)
            (extract-sig-frame 
             (car (g 'call-stack st))
             (g 'method-table st))))
  :hints (("Goal" :in-theory (e/d (next-inst)
                                  (bcv-simple-check-step-pre
                                   bcv-simple-check-step-pre-if-sig-frame-compatible
                                   bcv-simple-execute-step))
           :use ((:instance
                  bcv-simple-method-implies-next-inst-verified
                  ;; from bcv-simple-method-properties.lisp
                  (pc (g 'pc (car (g 'call-stack st))))
                  (method (s 'sig-vector (collect-witness-bcv-method 
                                          (current-method st)
                                          (g 'method-table st))
                             (current-method st)))
                  (method-table (g 'method-table st)))
                 (:instance bcv-simple-check-step-pre-if-sig-frame-compatible
                            (sframe  (extract-sig-frame 
                                      (car (g 'call-stack st))
                                      (g 'method-table st)))
                            (gframe  (cdr (assoc-equal (g 'pc (car (g 'call-stack st)))
                                                       (collect-witness-bcv-method 
                                                          (current-method st)
                                                          (g 'method-table st)))))
                            (inst (next-inst st)))))))

;;; because from consistent-state we know bcv-simple-method
;;;         from consistent-state we know extract-sig-frame from st
;;;                                     is more specific than recorded
;;;                                     sig-frame
;;;         from (bcv-simple-method (current-method st)) we know 
;;;                 bcv-simple-check-step-pre inst on recorded (more general) sig-frame!! 
;;;         we proved that bcv-simple-check-step-pre succeed on more specific frame 


(defthm consistent-state-all-next-state-safe-if-pc-in-range
  (implies (and (consistent-state st)
                (pc-in-range st))
           (all-next-state-safe 
            (bcv-simple-execute-step (next-inst st)
                              (extract-sig-frame 
                               (car (g 'call-stack st))
                               (g 'method-table st)))
            (collect-witness-bcv-method (current-method st)
                                        (g 'method-table st))))
  :hints (("Goal" :in-theory (e/d (next-inst)
                                  (all-next-state-safe
                                   collect-witness-bcv-method
                                   bcv-simple-method-implies-next-inst-verified
                                   bcv-check-step-post-if-sig-frame-compatible
                                   bcv-simple-execute-step))
           :use ((:instance
                  bcv-simple-method-implies-next-inst-verified
                  (pc (g 'pc (car (g 'call-stack st))))
                  (method (s 'sig-vector 
                             (collect-witness-bcv-method (current-method st)
                                                         (g 'method-table st))
                             (current-method st)))
                  (method-table (g 'method-table st)))
                 (:instance bcv-check-step-post-if-sig-frame-compatible
                            (sframe  (extract-sig-frame 
                                      (car (g 'call-stack st))
                                      (g 'method-table st)))
                            (gframe  (cdr (assoc-equal (g 'pc (car (g 'call-stack st)))
                                                       (collect-witness-bcv-method (current-method st)
                                                                                   (g 'method-table st)))))
                            (inst (next-inst st))
                            (vector (collect-witness-bcv-method 
                                     (current-method st)
                                     (g 'method-table st))))))))
                                                                


(defthm consistent-state-all-next-state-safe-if-pc-in-range-weak
  (implies (and (consistent-state st)
                (pc-in-range st))
           (all-next-state-safe 
            (bcv-simple-execute-step (next-inst st)
                              (cdr (assoc-equal 
                                    (g 'pc (car (g 'call-stack st)))
                                    (collect-witness-bcv-method 
                                     (current-method st)
                                     (g 'method-table st)))))
            (collect-witness-bcv-method (current-method st)
                                        (g 'method-table st))))
  :hints (("Goal" :in-theory (e/d (next-inst)
                                  (all-next-state-safe
                                   bcv-simple-method-implies-next-inst-verified
                                   bcv-check-step-post-if-sig-frame-compatible
                                   bcv-simple-execute-step))
           :use ((:instance
                  bcv-simple-method-implies-next-inst-verified
                  (pc (g 'pc (car (g 'call-stack st))))
                  (method (s 'sig-vector 
                             (collect-witness-bcv-method (current-method st)
                                                         (g 'method-table st))
                             (current-method st)))
                  (method-table (g 'method-table st)))))))


;; notes: this kind of rule does not fire too easily!!
;; because we have rewrite rules that rewrite (g 'method-table st) into ....
;; 
;; Let's see how it works!! Sun Nov 20 18:07:53 2005



(defthm consistent-state-max-stack-equal
  (IMPLIES (CONSISTENT-STATE ST)
           (EQUAL (G 'MAX-STACK
                     (current-method st))
                  (G 'MAX-STACK (CAR (G 'CALL-STACK ST)))))
  :hints (("Goal" :in-theory (enable consistent-state current-method))))

;----------------------------------------------------------------------


(local 
 (defthm sig-frame-compatible-equal-pc
   (implies (sig-frame-compatible frame1 frame2)
            (equal (g 'pc frame2)
                   (g 'pc frame1)))
   :hints (("Goal" :in-theory (enable sig-frame-compatible)))))


(defthm consistent-state-implies-sig-frame-pc-is-pc
  (implies (consistent-state st)
           (equal (g 'pc 
                     (cdr (assoc-equal (g 'pc (car (g 'call-stack st)))
                                       (collect-witness-bcv-method
                                        (current-method st)
                                        (g 'method-table st)))))
                  (g 'pc (car (g 'call-stack st)))))
  :hints (("Goal" 
           :use ((:instance 
                  consistent-state-sig-frame-compatible)
                 (:instance sig-frame-compatible-equal-pc
                            (frame1  (extract-sig-frame (car (g 'call-stack st))
                                                        (g 'method-table st)))
                            (frame2 (cdr (assoc-equal (g 'pc (car (g 'call-stack st)))
                                                      (collect-witness-bcv-method 
                                                       (current-method st)
                                                       (g 'method-table st))))))))))


;----------------------------------------------------------------------


(defthm all-next-state-safe-implies-sig-frame-compatible
  (implies (and (all-next-state-safe l sig-vector)
                (member x l))
           (sig-frame-compatible x 
                                 (cdr (assoc-equal 
                                       (g 'pc x) sig-vector)))))


(defthm all-next-state-safe-implies-pc-equal
  (implies (and (all-next-state-safe l sig-vector)
                (member x l))
           (equal (g 'pc (cdr (assoc-equal (g 'pc x) sig-vector)))
                  (g 'pc x)))
  :hints (("Goal" :use ((:instance sig-frame-compatible-equal-pc
                                   (frame1 x)
                                   (frame2 (cdr (assoc-equal (g 'pc x) sig-vector))))))))


;----------------------------------------------------------------------

                   
(local 
 (defthm sig-frame-compatible-equal-max-stack
   (implies (sig-frame-compatible frame1 frame2)
            (equal (g 'max-stack frame2)
                   (g 'max-stack frame1)))
   :hints (("Goal" :in-theory (enable sig-frame-compatible)))))


(defthm consistent-state-implies-sig-frame-max-stack-is-max-stack
  (implies (consistent-state st)
           (equal (g 'max-stack
                     (cdr (assoc-equal (g 'pc (car (g 'call-stack st)))
                                       (collect-witness-bcv-method
                                        (current-method st)
                                        (g 'method-table st)))))
                  (g 'max-stack (car (g 'call-stack st)))))
   :hints (("Goal" 
            :use ((:instance 
                          consistent-state-sig-frame-compatible)
                  (:instance sig-frame-compatible-equal-max-stack
                             (frame1  (extract-sig-frame (car (g 'call-stack st))
                                                         (g 'method-table st)))
                             (frame2 (cdr (assoc-equal (g 'pc (car (g 'call-stack st)))
                                                       (collect-witness-bcv-method (current-method st)
                                                                                   (g 'method-table st))))))))))


(defthm all-next-state-safe-implies-max-stack-equal
  (implies (and (all-next-state-safe l sig-vector)
                (member x l))
           (equal (g 'max-stack (cdr (assoc-equal (g 'pc x) sig-vector)))
                  (g 'max-stack x)))
  :hints (("Goal" :use ((:instance sig-frame-compatible-equal-max-stack
                                   (frame1 x)
                                   (frame2 (cdr (assoc-equal (g 'pc x)
                                                             sig-vector))))))))

;----------------------------------------------------------------------

(local 
 (defthm sig-frame-compatible-equal-method-table
   (implies (sig-frame-compatible frame1 frame2)
            (equal (g 'method-table frame2)
                   (g 'method-table frame1)))
   :hints (("Goal" :in-theory (enable sig-frame-compatible)))))


(defthm all-next-state-safe-implies-method-table-equal
  (implies (and (all-next-state-safe l sig-vector)
                (member x l))
           (equal (g 'method-table (cdr (assoc-equal (g 'pc x) sig-vector)))
                  (g 'method-table x)))
   :hints (("Goal" :use ((:instance sig-frame-compatible-equal-method-table
                                    (frame1 x)
                                    (frame2 (cdr (assoc-equal (g 'pc x) sig-vector))))))))


;;(i-am-here) ;; Thu Oct 20 16:26:26 2005
(local 
 (defthm sig-frame-compatible-extract-sig-frame-general
   (implies (sig-frame-compatible 
             (extract-sig-frame any-frame method-table)
             frame)
            (equal (g 'method-table frame)
                   method-table))))


(defthm sig-frame-compatible-extract-sig-frame
  (implies (sig-frame-compatible 
            (extract-sig-frame any-frame method-table)
            (cdr (assoc-equal pc vector)))
           (equal (g 'method-table (cdr (assoc-equal pc vector)))
                  method-table)))



;;; this is a bad rewrite rule 




;----------------------------------------------------------------------

                   
(local 
 (defthm sig-frame-compatible-equal-op-stack
   (implies (sig-frame-compatible frame1 frame2)
            (equal (g 'op-stack frame2)
                   (g 'op-stack frame1)))
   :hints (("Goal" :in-theory (enable sig-frame-compatible)))))


(defthm all-next-state-safe-implies-opstack-equal
  (implies (and (all-next-state-safe l sig-vector)
                (member x l))
           (equal (g 'op-stack (cdr (assoc-equal (g 'pc x) sig-vector)))
                  (g 'op-stack x)))
  :hints (("Goal" :use ((:instance sig-frame-compatible-equal-op-stack
                                   (frame1 x)
                                   (frame2 (cdr (assoc-equal (g 'pc x) sig-vector))))))))




;;(i-am-here) ;; Thu Oct 20 16:26:26 2005
(local 
 (defthm sig-frame-compatible-extract-sig-frame-general-opstack
   (implies (sig-frame-compatible 
             (extract-sig-frame any-frame method-table)
             frame)
            (equal (g 'op-stack frame)
                   (len (g 'op-stack any-frame))))))


(defthm sig-frame-compatible-extract-sig-frame-opstack
  (implies (sig-frame-compatible 
            (extract-sig-frame any-frame method-table)
            (cdr (assoc-equal pc vector)))
           (equal (g 'op-stack (cdr (assoc-equal pc vector)))
                  (len (g 'op-stack any-frame)))))

;----------------------------------------------------------------------

(local 
 (defthm sig-frame-compatible-equal-method-name
   (implies (sig-frame-compatible frame1 frame2)
            (equal (g 'method-name frame2)
                   (g 'method-name frame1)))
   :hints (("Goal" :in-theory (enable sig-frame-compatible)))))

(defthm all-next-state-safe-implies-method-name-equal
  (implies (and (all-next-state-safe l sig-vector)
                (member x l))
           (equal (g 'method-name (cdr (assoc-equal (g 'pc x) sig-vector)))
                  (g 'method-name x)))
   :hints (("Goal" :use ((:instance sig-frame-compatible-equal-method-name
                                    (frame1 x)
                                    (frame2 (cdr (assoc-equal (g 'pc x) sig-vector))))))))

;----------------------------------------------------------------------

(local 
 (defthm sig-frame-compatible-extract-sig-frame-general-method-name
   (implies (sig-frame-compatible 
             (extract-sig-frame any-frame method-table)
             frame)
            (equal (g 'method-name frame)
                   (g 'method-name any-frame)))))





(defthm sig-frame-compatible-extract-sig-frame-method-name
  (implies (sig-frame-compatible 
            (extract-sig-frame any-frame method-table)
            (cdr (assoc-equal pc vector)))
           (equal (g 'method-name (cdr (assoc-equal pc vector)))
                  (g 'method-name any-frame))))

;----------------------------------------------------------------------

;;(i-am-here) ;; Thu Nov  3 23:55:53 2005

(local 
 (defthm sig-frame-compatible-extract-sig-frame-general-method-name-2
   (implies (sig-frame-compatible 
             (sig-frame-push-value any any-frame)
             frame)
            (equal (g 'method-name frame)
                   (g 'method-name any-frame)))
   :hints (("Goal" :in-theory (enable sig-frame-compatible)))))



(defthm sig-frame-compatible-extract-sig-frame-method-name-2
  (implies (sig-frame-compatible 
            (sig-frame-push-value any any-frame)
            (cdr (assoc-equal pc vector)))
           (equal (g 'method-name (cdr (assoc-equal pc vector)))
                  (g 'method-name any-frame)))
  :hints (("Goal" :in-theory (disable sig-frame-push-value))))

;----------------------------------------------------------------------




;----------------------------------------------------------------------


(defthm cdr-g-call-stack-popStack-n
  (equal (cdr (g 'call-stack (popstack-n st n)))
         (cdr (g 'call-stack st))))


(defthm consistent-call-stack1-top-frame-opstack-popStack-n-no-change
  (implies (consistent-call-stack1 call-stack (car (g 'call-stack st)) method-table)
           (consistent-call-stack1 call-stack (car (g 'call-stack 
                                                      (popstack-n st n)))
                                   method-table)))

;----------------------------------------------------------------------

;;(i-am-here);; Fri Oct 21 13:13:08 2005

(defthm consistent-state-len-opstack-in-limit
  (implies (consistent-state st)
           (<= (len (g 'op-stack (car (g 'call-stack st))))
               (g 'max-stack (car (g 'call-stack st)))))
  :hints (("Goal" :in-theory (enable consistent-state)))
  :rule-classes :linear)

;----------------------------------------------------------------------

(defthm consistent-state-len-opstack-in-limit-specific
  (implies (consistent-state st)
           (<= (len (cdr (g 'op-stack (car (g 'call-stack st)))))
               (g 'max-stack (car (g 'call-stack st)))))
  :hints (("Goal" :use consistent-state-len-opstack-in-limit)))
;----------------------------------------------------------------------

;;(i-am-here) ;; Thu Nov  3 22:39:51 2005

(defthm consistent-state-implies-method-name-equal
  (IMPLIES (CONSISTENT-STATE ST)
           (EQUAL (G 'METHOD-NAME (CURRENT-METHOD ST))
                  (G 'METHOD-NAME
                     (CAR (G 'CALL-STACK ST)))))
  :hints (("Goal" :in-theory (enable consistent-state))))


;----------------------------------------------------------------------

(defthm consistent-state-implies-name-equal-2
  (IMPLIES (AND (CONSISTENT-STATE ST)
                (CONSP (CDR (G 'CALL-STACK ST))))
           (EQUAL (G 'METHOD-NAME
                     (CDR (ASSOC-EQUAL (G 'METHOD-NAME
                                          (CADR (G 'CALL-STACK ST)))
                                       (G 'METHOD-TABLE ST))))
                  (G 'METHOD-NAME
                     (CADR (G 'CALL-STACK ST)))))
  :hints (("Goal" :in-theory (enable consistent-state))))


;----------------------------------------------------------------------

;;; (i-am-here) ;; Sun Nov 20 20:04:39 2005

(defthm consistent-state-bcv-method-current-method
  (implies (consistent-state st)
           (bcv-method (current-method st) (g 'method-table st)))
  :hints (("Goal" :in-theory (e/d (consistent-state current-method)
                                  (bcv-method))))
  :rule-classes :forward-chaining)


;----------------------------------------------------------------------

;;(i-am-here) ;; Sun Nov 20 22:17:37 2005

(defthm wff-method-table-implies-g-method-name-normalize
  (implies (and (wff-method-table method-table)
                (assoc-equal name method-table))
           (equal (g 'method-name (cdr (assoc-equal name method-table)))
                  name)))


(defthm consistent-state-implies-wff-method-table
  (implies (consistent-state djvm-s)
           (wff-method-table (g 'method-table djvm-s)))
  :hints (("Goal" :in-theory (enable consistent-state))))


;----------------------------------------------------------------------

(defthm consistent-state-implies-pc-in-range-f
  (implies (consistent-state st)
           (pc-in-range st))
  :hints (("Goal" :in-theory (e/d (consistent-state) (pc-in-range))))
  :rule-classes :forward-chaining)


;----------------------------------------------------------------------

;;(i-am-here) ;; Mon Nov 21 02:05:40 2005

;; (local (include-book "bcv-simple-method-properties"))

(encapsulate () 
  (local 
   (encapsulate () 
      (local (include-book "bcv-simple-method-properties"))
      (defthm bcv-simple-method-implies-next-inst-verified
      (implies (and (bcv-simple-method method method-table)
                    (integerp pc)
                    (<= 0 pc)
                    (< pc (len (g 'code method))))
               (bcv-simple-inst pc 
                                (nth pc (g 'code method))
                                (g 'sig-vector method))))))
  
(defthm consistent-state-implies-bcv-simple-inst
  (implies (consistent-state st)
           (bcv-simple-inst (g 'pc (car (g 'call-stack st))) 
                            (next-inst st)
                            (collect-witness-bcv-method
                             (current-method st)
                             (g 'method-table st))))
  :hints (("Goal" :in-theory (e/d (consistent-state
                                   next-inst
                                   pc-in-range)
                                  (bcv-simple-inst
                                   bcv-simple-method
                                   bcv-method
                                   consistent-call-stack
                                   collect-witness-bcv-method))
           :use ((:instance bcv-simple-method-implies-next-inst-verified
                            (method (s 'sig-vector (collect-witness-bcv-method 
                                                    (current-method st)
                                                    (g 'method-table st))
                                       (current-method st)))
                            (pc (g 'pc (car (g 'call-stack st))))
                            (method-table (g 'method-table st))))))))

;----------------------------------------------------------------------

(defthm consistent-state-implies-integerp-pc
  (implies (consistent-state st)
           (integerp (g 'pc (car (g 'call-stack st)))))
  :hints (("Goal" :in-theory (enable consistent-state pc-in-range))))

(defthm consistent-state-implies-greater-than-zero
  (implies (consistent-state st)
           (<=  0 (g 'pc (car (g 'call-stack st)))))
  :hints (("Goal" :in-theory (enable consistent-state pc-in-range)))
  :rule-classes :linear)

(defthm consistent-state-implies-less-than-len
  (implies (consistent-state st)
           (<  (g 'pc (car (g 'call-stack st)))
               (len (g 'code (current-method st)))))
  :hints (("Goal" :in-theory (enable consistent-state pc-in-range)))
  :rule-classes :linear)

;----------------------------------------------------------------------



(defthm consistent-state-bcv-method-current-method-b
  (implies (consistent-state st)
           (bcv-method (current-method st) 
                       (g 'method-table st))))


;----------------------------------------------------------------------

(defthm current-method-normalize-x
  (equal (CDR (ASSOC-EQUAL (G 'METHOD-NAME
                              (CAR (G 'CALL-STACK DJVM-S)))
                           (G 'METHOD-TABLE DJVM-S)))
         (current-method djvm-s))
  :hints (("Goal" :in-theory (enable current-method))))

  


;----------------------------------------------------------------------