Proof: Addi Insn 18
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 18 = 4
- value of cell 4 at time 18 = 2
then value of cell 4 at time 19 = 3
Proof:
Given
1 | instruction #4 is addi dst=4 src=4 imm=1 |
---|---|
2 | the PC at time 18 = 4 |
3 | value of cell 4 at time 18 = 2 |
# | Claim | Reason |
---|---|---|
1 | value of cell 4 at time (18 + 1) = (value of cell 4 at time 18) + 1 | if instruction #4 is addi dst=4 src=4 imm=1 and the PC at time 18 = 4, then value of cell 4 at time (18 + 1) = (value of cell 4 at time 18) + 1 |
2 | 18 + 1 = 19 | 18 + 1 = 19 |
3 | value of cell 4 at time (18 + 1) = value of cell 4 at time 19 | if 18 + 1 = 19, then value of cell 4 at time (18 + 1) = value of cell 4 at time 19 |
4 | value of cell 4 at time 19 = (value of cell 4 at time 18) + 1 | if value of cell 4 at time (18 + 1) = value of cell 4 at time 19 and value of cell 4 at time (18 + 1) = (value of cell 4 at time 18) + 1, then value of cell 4 at time 19 = (value of cell 4 at time 18) + 1 |
5 | value of cell 4 at time 19 = 2 + 1 | if value of cell 4 at time 19 = (value of cell 4 at time 18) + 1 and value of cell 4 at time 18 = 2, then value of cell 4 at time 19 = 2 + 1 |
6 | 2 + 1 = 3 | 2 + 1 = 3 |
7 | value of cell 4 at time 19 = 3 | if value of cell 4 at time 19 = 2 + 1 and 2 + 1 = 3, then value of cell 4 at time 19 = 3 |
Comments
Please log in to add comments