03 - Stack Machines (Theory)
The second homework will give you a better understanding of simple stack and register machines and how to perform basic arithmetic operations on them.
For this, we will have a look at the Reverse Polish Notation (RPN) and simulate a stack machine using RPN for the operations.
Solve until: Sunday, 24.11.2024
Task 1
Do some research on register and stack machines and answer the following questions afterward:
- One drawback of stack machines is the need of more memory references.
For a simpleADD
operation of two integers, how many times the data cache is referenced?
Write down the steps for the operation. - For stack machines, we have a very compact object code (instruction set and rules) which fits in 6 bit or less.
In comparison, register machines need more bits for the same instruction on the arithmetic logic unit (ALU).
Explain briefly why this is the case and give an average length needed for instructions for register machines. - Explain briefly how register and stack machines handle interrupts and why stack machines may have an advantage here.
Task 2
Make yourself familiar with the Reverse Polish Notation (RPN).
Transform the following mathematical expressions into RPN.
Do not pre-calculate sub-expressions, keep the original operands.
Also, use only basic arithmetic here (ADD
, SUB
, MUL
, DIV
).
$4 * (7 + 8 * 9) - 1$
$(96 - (4 + 44 * (3 - 1) + 7) * 25)$
$(5^{3} / ( 2 + 3)) / 5$
Task 3
Simulate the execution of the following sequences using our stack specification.
- Transform every instruction and operand into its binary representation beforehand.
Set the MSB correctly according to our specification and always end withSTP
.$4\ 2\ 2\ 3\ ∗\ +\ ∗\ 2\ /$
- Execute the following sequence:
\[ \begin{matrix} 001010 \\ 010001 \\ 010001 \\ 010110 \\ 011111 \\ 000100 \\ 011011 \\ 000100 \\ 011001 \\ 000110 \\ 011000 \\ 100010 \\ 110110 \\ 101000 \\ 110101 \\ 010000 \end{matrix} \]
For each binary word do the following:
- If it is an operand or character, push it to the stack.
- If it is an instruction (or character instruction), pop all words needed, execute the instruction, and push the result back to the stack (if there is any).
- Show the current content of the stack (or write down the string).
For both sequences, what is the final content on the stack?
For this assignment you don’t have to consider exceptions in the execution of the stack machine.