proof pearl proving a simple von neumann machine turing
play

Proof Pearl: Proving a Simple Von Neumann Machine Turing Complete J - PowerPoint PPT Presentation

Proof Pearl: Proving a Simple Von Neumann Machine Turing Complete J Strother Moore Department of Computer Science University of Texas at Austin presented by Matt Kaufmann at ITP 2014, Vienna July, 2014 1 Introduction M1 is a simple


  1. Proof Pearl: Proving a Simple Von Neumann Machine Turing Complete J Strother Moore Department of Computer Science University of Texas at Austin presented by Matt Kaufmann at ITP 2014, Vienna July, 2014 1

  2. Introduction M1 is a simple (“toy”) model of the JVM, developed by Moore to teach formal modeling and mechanized code proof. Details are in the paper and in ACL2 input scripts distributed with the ACL2 Community Books (as per the paper). Feel free to email questions to moore@cs.utexas.edu. 2

  3. Typical M1 Programming Challenge Write a program that takes two natural numbers, i and j , in reg [0] and reg [1] and halts with 1 on the stack if i < j and 0 on the stack otherwise. Difficulty : The only test in the M1 language is “jump if top-of-stack equals 0”! Solution : Count both variables down by 1 and stop when one or the other is 0. 3

  4. Java Bytecode Solution ILOAD 1 // 0 IFEQ 12 // 1 if reg[1]=0, jump to 13; ILOAD 0 // 2 IFEQ 12 // 3 if reg[0]=0, jump to 15; ILOAD 0 // 4 ICONST 1 // 5 ISUB // 6 ISTORE 0 // 7 reg[0] := reg[0] - 1; ILOAD 1 // 8 ICONST 1 // 9 ISUB // 10 ISTORE 1 // 11 reg[1] := reg[1] - 1; GOTO -12 // 12 jump to 0; ICONST 0 // 13 IRETURN // 14 halt with 0 on stack; ICONST 1 // 15 IRETURN // 16 halt with 1 on stack; JVM pcs are byte addresses but instruction counts are shown here 4

  5. An M1 Programming Solution ’((ILOAD 1) ; 0 (IFEQ 12) ; 1 if reg[1]=0, jump to 13; (ILOAD 0) ; 2 (IFEQ 12) ; 3 if reg[0]=0, jump to 15; (ILOAD 0) ; 4 (ICONST 1) ; 5 (ISUB) ; 6 (ISTORE 0) ; 7 reg[0] := reg[0] - 1; (ILOAD 1) ; 8 (ICONST 1) ; 9 (ISUB) ; 10 (ISTORE 1) ; 11 reg[1] := reg[1] - 1; (GOTO -12) ; 12 jump to 0; (ICONST 0) ; 13 (HALT) ; 14 halt with 0 on stack; (ICONST 1) ; 15 (HALT)) ; 16 halt with 1 on stack; Call this constant κ . 5

  6. Outline • M1 • Turing Machines • Turing Completeness • Implementation • Verifying Compiler • Some Statistics • Emulating Turing Machines with M1 • Conclusion 6

  7. M1 The M1 state provides • a program counter • a fixed (but arbitrary) number of registers whose values are unbounded integers • an unbounded push down stack • a program which is a fixed, finite list of instructions 7

  8. Each instruction is formalized with a state transition function. Given a state s and a natural n , we define M 1( s, n ) to be the result of stepping n times from s . It is possible to prove properties of M1 programs, e.g., that κ halts and leaves 1 or 0 on the stack, depending on whether reg [0] < reg [1] . Partial correctness results can be proved too. 8

  9. Outline • M1 • Turing Machines • Turing Completeness • Implementation • Verifying Compiler • Some Statistics • Emulating Turing Machines with M1 • Conclusion 9

  10. Turing Machines Description ∗ trace of TMI ( st, tape, tm, n ) tm = *rogers-tm* n st tape � ((Q0 1 0 Q1) 0 Q0 (1 1 1 1 1) � (Q1 0 R Q2) 1 Q1 (0 1 1 1 1) � (Q2 1 0 Q3) 2 Q2 (0 1 1 1 1) � (Q3 0 R Q4) 3 Q3 (0 0 1 1 1) � (Q4 1 R Q4) 4 Q4 (0 0 1 1 1) � (Q4 0 R Q5) 5 Q4 (0 0 1 1 1) � (Q5 1 R Q5) 6 Q4 (0 0 1 1 1) � (Q5 0 1 Q6) 7 Q4 (0 0 1 1 1 0) � (Q6 1 R Q6) 8 Q5 (0 0 1 1 1 0 0) � (Q6 0 1 Q7) 9 Q6 (0 0 1 1 1 0 1) � (Q7 1 L Q7) 10 Q6 (0 0 1 1 1 0 1 0) � (Q7 0 L Q8) . . . . . . . . . � (Q8 1 L Q1) 75 Q7 (0 0 0 0 0 0 1 1 1 1 1 1 1 1) � (Q1 1 L Q1)) 76 Q7 (0 0 0 0 0 0 1 1 1 1 1 1 1 1) � 77 Q7 (0 0 0 0 0 0 1 1 1 1 1 1 1 1) � (0 0 0 0 0 0 1 1 1 1 1 1 1 1) ⇐ halted 78 Q8 ∗ A Theory of recursive functions and effective computability , Hartley Rogers, McGraw-Hill, 1967 10

  11. A Turing Machine Interpreter in ACL2 � final tape if halts within n steps tmi ( st, tape, tm, n ) = otherwise nil A tape is representated as a pair of extensible half-tapes < Left, Right > , where the read/write head is at the start of Right . A tape is never nil . The definition of tmi is the ACL2 translation of the definition of NQTHM’s tmi used in [Boyer-Moore 1984]. 11

  12. Outline • M1 • Turing Machines • Turing Completeness • Implementation • Verifying Compiler • Some Statistics • Emulating Turing Machines with M1 • Conclusion 12

  13. Turing Completeness “M1 can emulate TMI” Approach: Implement TMI as an M1 program and prove it correct. But TMI deals with symbols (e.g., Q1 , L , R , etc) and conses (e.g., machine descriptions and tapes) whereas M1 only has integers. We must establish a correspondence between the objects in the TMI and M1 worlds. The encoding is straightforward “bit packing” into integers. “M1 can emulate TMI modulo the correspondence ” 13

  14. Conventions Let tm , st , and tape be a Turing machine description, initial state symbol, and initial tape. Let Ψ be a certain M1 program constant described below. Let s 0 be the M1 state with • pc = 0 • 13 registers, initially containing 0s, • a stack containing (the numeric correspondents of) tm , st , tape and certain constants used to decode them, and • our program Ψ . 14

  15. Theorems Theorem A: If TMI runs forever on st , tape , and tm , then M1 runs forever on s 0 . Theorem B: If TMI halts on st , tape , and tm after n steps, then M1 halts on s 0 after some k steps and returns the same tape (modulo correspondence). 15

  16. Theorems Theorem A: If TMI runs forever on st , tape , and tm , then M1 runs forever on s 0 . Theorem B: If TMI halts on st , tape , and tm after n steps, then M1 halts on s 0 after some k steps and returns the same tape (modulo correspondence). 16

  17. Theorems Theorem A: If TMI runs forever on st , tape , and tm , then M1 runs forever on s 0 . Theorem B: If TMI halts on st , tape , and tm after n steps, then M1 halts on s 0 after find-k ( st, tape, tm, n ) steps and returns the same tape (modulo correspondence). 17

  18. Theorems Theorem A: If TMI runs forever on st , tape , and tm , then M1 runs forever on s 0 . Theorem B: If TMI halts on st , tape , and tm after n steps, then M1 halts on s 0 after find-k ( st, tape, tm, n ) steps and returns the same tape (modulo correspondence). 18

  19. Theorems Theorem A: If M1 halts on s 0 after i steps, then TMI halts on st , tape , and tm after some j steps. Theorem B: If TMI halts on st , tape , and tm after n steps, then M1 halts on s 0 after find-k ( st, tape, tm, n ) steps and returns the same tape (modulo correspondence). 19

  20. Theorems Theorem A: If M1 halts on s 0 after i steps, then TMI halts on st , tape , and tm after some j steps. Theorem B: If TMI halts on st , tape , and tm after n steps, then M1 halts on s 0 after find-k ( st, tape, tm, n ) steps and returns the same tape (modulo correspondence). 20

  21. Theorems Theorem A: If M1 halts on s 0 after i steps, then TMI halts on st , tape , and tm after find-j ( st, tape, tm, i ) steps. Theorem B: If TMI halts on st , tape , and tm after n steps, then M1 halts on s 0 after find-k ( st, tape, tm, n ) steps and returns the same tape (modulo correspondence). 21

  22. Theorems Theorem A: If M1 halts on s 0 after i steps, then TMI halts on st , tape , and tm after find-j ( st, tape, tm, i ) steps. Theorem B: If TMI halts on st , tape , and tm after n steps, then M1 halts on s 0 after find-k ( st, tape, tm, n ) steps and returns the same tape (modulo correspondence). Creative Steps: • reducing TMI to an equivalent “bit-packed” version, TMI3 • defining Ψ and proving it implements TMI3 • defining find-j (to count TMI steps given M1 steps) See the paper and scripts. Dealing with Ψ could be tedious! 22

  23. Outline • M1 • Turing Machines • Turing Completeness • Implementation • Verifying Compiler • Some Statistics • Emulating Turing Machines with M1 • Conclusion 23

  24. Implementation Ψ = 0 � (ISUB) ; 19 � (GOTO 15) ; 38 � (GOTO -132) ;877 ((ICONST 2) ; 1 � (ILOAD 1) ; 20 � (ISTORE 12) ; 39 � (ISTORE 9) (GOTO 843) ; ;878 2 � (ICONST 1) ; 21 � (ISTORE 7) ; 40 � (ISTORE 8) (HALT) ; ;879 3 � (ISUB) ; 22 � (ISTORE 6) ; 41 � (ISTORE 7) (ISTORE 12) ; ;880 4 � (ISTORE 1) ; 23 � (ILOAD 0) ; 42 � (ISTORE 6) (ISTORE 7) ; ;881 5 � (ISTORE 0) ; 24 � (ILOAD 1) ; 43 � (ISTORE 12) ;882 (ISTORE 6) ; 6 � (GOTO -12) ; 25 � (ILOAD 12) ; 44 � (ISTORE 5) (ILOAD 0) ; ;883 7 � (ICONST 1) ; 26 � (ILOAD 6) ; 45 � (ISTORE 4) (ILOAD 1) ; ;884 8 � (GOTO 2) ; 27 � ... ... � (ISTORE 3) (ILOAD 12) ; ;885 9 � (ICONST 0) ; 28 � [824 deletions] � (ISTORE 2) (ILOAD 6) ; ;886 ; 10 � (ISTORE 6) ; 29 � ... ... � (ISTORE 1) (ILOAD 7) ;887 ; 11 � (ISTORE 12) ; 30 � (ISTORE 0) ;869 � (ISTORE 0) (ISTORE 1) ;888 ; 12 � (ISTORE 1) ; 31 � (ILOAD 0) ;870 � (ILOAD 6) (ISTORE 0) ;889 ; 13 � (ISTORE 0) ; 32 � (ILOAD 1) ;871 � (ILOAD 7) (ILOAD 1) ;890 ; 14 � (ILOAD 6) ; 33 � (ILOAD 2) ;872 � (ILOAD 8) (IFEQ 14) ;891 ; 15 � (ILOAD 12) ; 34 � (ILOAD 3) ;873 � (ILOAD 9) (ILOAD 0) ;892 ; 16 � (ICONST 107); 35 � (ILOAD 4) ;874 � (GOTO -891) ;893 (IFEQ 10) ; 17 � (ISUB) ; 36 � (ILOAD 5) ;875 � (GOTO 0) (ILOAD 0) ;894 ; 18 � (IFEQ 70) ; 37 � (ICONST 878);876 � (GOTO 0)) (ICONST 1) ;895 24

  25. If we had some eggs . . . we could have eggs and ham, . . . if we had some ham. – Groucho Marx 25

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend