Advanced CPU Design Flashcards
What is a subroutine?
A self-contained piece of code which can be called from the main program
What is the best way to store the return address during a subroutine?
In a stack
What is the main problem with using stacks?
Stack-overflow
How do we help minimise stack-overflow?
Dedicate memory for any elements that overflow
What does the stack pointer register do?
Stores the address of the most recent data element added to the stack
What is an interrupt in programming?
A signal to jump to another piece of code outside the main program
What are the two CPU access modes?
Privileged mode
Restricted mode
What is privileged mode used for?
Used by the kernel and gives it access to memory, real addresses, OS code execution, the stack, and IRQ timer
What is restricted mode used for?
Used by user programs and uses pre-processed virtual addresses
What swaps from privileged mode to restricted mode?
The IRQ timer callback
What is an instruction set?
A complete set of instructions that are understood by a given CPU
What do instruction sets depend on?
Data types, instruction types, addressing modes, and instruction format
What is the FPU?
Floating point unit
Why do we use the FPU?
Floating point operations use so many resources that it is more efficient to have a dedicated unit. However, the FPU is usually built-into the CPU
What is pipe lining?
The CPU breaks instructions down into multiple steps and stores them, this allows the CPU to perform multiple operations simultaneously
What can cause hazards in pipe lining?
branching
How can we avoid branch hazards?
write code to avoid it, pipe line stalling, eager execution, branch prediction
How does branch predictions work?
It assumes that all branches are taken as most branches arise from loops. Programmers will leave hints so that these loops can be spotted and dealt with
What is operand forwarding?
It lets pipelining stages access results in-between other stages.
What is out of order execution?
Executing instructions not in the order they appear in the program
What is CISC?
An instruction set. Focuses on hardware and includes complex, multi-clock instructions. Small code sizes where the compiler doesn’t have to do much work, however, the code is very complex. Uses little RAM
What is RISC?
An instruction set. Focuses on software, and uses reduced, single clock instructions. Larger code sizes means the compiler has a lot of work to do, however, the code is simple. Uses a lot of RAM.