Proof: Addi Insn 8
Let's prove the following theorem:
if the following are true:
- instruction #4 is
addi dst=4 src=4 imm=1
- the PC at time 8 = 4
- value of cell 4 at time 8 = 1
then value of cell 4 at time 9 = 2
Proof:
Given
1 | instruction #4 is addi dst=4 src=4 imm=1 |
---|---|
2 | the PC at time 8 = 4 |
3 | value of cell 4 at time 8 = 1 |
# | Claim | Reason |
---|---|---|
1 | value of cell 4 at time (8 + 1) = (value of cell 4 at time 8) + 1 | if instruction #4 is addi dst=4 src=4 imm=1 and the PC at time 8 = 4, then value of cell 4 at time (8 + 1) = (value of cell 4 at time 8) + 1 |
2 | 8 + 1 = 9 | 8 + 1 = 9 |
3 | value of cell 4 at time (8 + 1) = value of cell 4 at time 9 | if 8 + 1 = 9, then value of cell 4 at time (8 + 1) = value of cell 4 at time 9 |
4 | value of cell 4 at time 9 = (value of cell 4 at time 8) + 1 | if value of cell 4 at time (8 + 1) = value of cell 4 at time 9 and value of cell 4 at time (8 + 1) = (value of cell 4 at time 8) + 1, then value of cell 4 at time 9 = (value of cell 4 at time 8) + 1 |
5 | value of cell 4 at time 9 = 1 + 1 | if value of cell 4 at time 9 = (value of cell 4 at time 8) + 1 and value of cell 4 at time 8 = 1, then value of cell 4 at time 9 = 1 + 1 |
6 | 1 + 1 = 2 | 1 + 1 = 2 |
7 | value of cell 4 at time 9 = 2 | if value of cell 4 at time 9 = 1 + 1 and 1 + 1 = 2, then value of cell 4 at time 9 = 2 |
Comments
Please log in to add comments