1.1.1) Structure and function of the processor Flashcards

(a) The Arithmetic and Logic Unit; ALU, Control Unit and Registers (Program Counter; PC, Accumulator; ACC, Memory Address Register; MAR, Memory Data Register; MDR, Current Instruction Register; CIR). Buses: data, address and control: how this relates to assembly language programs. (b) The Fetch-Decode-Execute Cycle; including its effects on registers. (c) The factors affecting the performance of the CPU: clock speed, number of cores, cache. (d) The use of pipelining in a processor to improve

1
Q

What is the ALU and what is it’s role?

A

Arithmetic Logic Unit, it performs all calculations and logical operations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are some functions of the ALU? (4)

A

Addition, subtraction, multiplication and division

Logical bitwise operations- AND, OR, NOT and XOR

Comparisons between values, such as greater than, less than, equal to.

Shifting binary patterns to the left or right.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the CU?

A

the Control Unit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the functions of the CU? (5)

A

Controls the inputs and outputs of the CPU

Directs the flow of data

Sends and receives control signals to and from other components

Decodes instructions

Manages the timing of data flow around the system

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the different registers? (7)

A

GPRs (General Purpose registers)
PC (Program Counters)
CIR (Current Instruction registers)
SR (Status register)
MAR (Memory Address register)
MDR (Memory Data register)
Accumulator

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Describe the role of GPRs…

A

Used as temporary storage registers to speed up processing instead of having to access RAM every time. GPRs are used by the ALU to store results of intermediate calculations produced as part of a larger computation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Describe the role of the Program Counter…

A

Holds the address of the next instruction to be executed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Describe the role of the Current Instruction Register….

A

Holds the current instruction being executed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Describe the role of the Status register…

A

Used to store any indicators such as errors or exceptions. It allows or disables interrupts to be raised. It brings attention to things like incomplete calculations or hardware malfunctions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Describe the role of the MAR….

A

temporarily holds the address of the data in RAM needing to be read/written to.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Describe the role of the MDR…

A

temporarily holds the data value retrieved from the address held in the MAR.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Describe the role of the accumulator…

A

Stores the result of ALU’s calculations. The processor accesses other GPRs where temporary values are stored while calculations are completed. Any result resides in the accumulator.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are the 3 types of buses? (3)

A

Data bus, Address bus, Control bus

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What does the data bus do? (4)
(where does it transfer between?, which directions?, what do the parallel lines mean?, why can it affect CPU performance?)

A

The data bus transfers between I/O, the CPU, main memory and secondary storage devices.

Each line is bidirectional meaning data can be read/written from.

The amount of parallel lines correlates with the number of bits able to be transferred in one operation.

The quantity able to be transferred can affect the CPU performance

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What does the Address Bus do? (3)
(what does it hold?, what is the width?, what does the width determine?)

A

Holds the location of where data instructions are held.

The number of parallel lines determines the number of bits that can be used to form an address.

The width determines the maximum number of addressable memory locations i.e the maximum memory capacity of a computer system. This is called the address space and can effect processor performance.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What does the Control bus do?

A

Sends control signals that manage and orchestrate operations.

It manages instructions outside of the CPU.

It is bi directional as it needs access to all components in order to coordinate them.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What is the FDE cycle?

A

The fetch decode execute cycle is the cycle with 3 main stages which every time an instructor is carried out it goes through the three tables.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What happens in the Fetch part of the FDE Cycle? (4)

A
  1. Address in PC copied to MAR
  2. PC incremented to “point” to next instruction
  3. Instruction found at address held in MAR copied to MDR
  4. Instruction in MDR copied to CIR
19
Q

What happens in the Decode part of the FDE Cycle? (1)

A
  1. CU decodes the contents of the CIR
20
Q

What happens in the Decode part of the FDE Cycle? (1)

A
  1. CU sends signals to relevant components
21
Q

What are the factors that affect the CPU? (3)

A

Clock speed, number of cores, cache

22
Q

What is the system clock? (3)

A

The clock generates a series of signals (0->1 when starting an instruction and 1-> 0 when ending)

This happens several million times per second.

The CPU cannot perform any faster than this.

23
Q

How does clock speed effect CPU performance?

A

The greater the clock speed the faster instructions can be executed.

24
Q

1GHz= ?

A

One billion clock cycles per second

25
Q

What is overclocking?

A

Overclocking is increasing the clock speed beyond what is set by the manufacturer, producing excess heat which must be cooled.

26
Q

What is a core?

A

Each core is a CPU

27
Q

How does the number of cores effect CPU performance?

A

In theory the more cores the more instructions can be processed simultaneously however in reality software often cannot take advantage of all of these.

28
Q

What is cache? (3)

A

Small very fast and expensive memory that lives in the CPU.

Instructions fetched from main memory are copied into cache to be used again if needed.

These are often renewed as more instructions are used.

29
Q

How does cache affect CPU performance?

A

The more cache memory a computer has, the faster it runs.

30
Q

What does Von Neumann architecture include?

A

The basic components of the computer and processor (e.g. single control unit, ALU, register and memory units)

31
Q

Which processor uses a linear format and what is that?

A

Von Neumann

A linear format means that each cycle must finish so the next one can begin.

32
Q

What is a key characteristic of the Vonn Neumann Architecture?

A

There is a shared memory and shared data bus used for both data and instructions.

33
Q

What is Von Neumann bottleneck?

A

The data bus is a lot slower than the rate at which the CPU can carry out instructions so there is a bottleneck.

34
Q

What is the structure of the Harvard architecture?

A

Has physically separate memories of instructions and data.

35
Q

What is Harvard architecture most commonly used for?

A

Embedded processors

36
Q

What does Harvard architecture allow you to optimize?

A

The size of individual memory cells and their buses depending on your needs.

37
Q

What is pipelining?

A

Pipelining is a technique used to improve processor performance. It means an instruction can simultaniously be fetchedwhile the previous instruction is decoded and the one before that is executed.

38
Q

What needs to happen to use pipelining?

A

The task needs to be broken down into subtasks.

39
Q

Where can this be used?

A

This can be used in many parts of a computer system but particularly in the FDE cycle.

39
Q

Why is pipelining used in the FDE cycle?

A
  • As the FDE cycle contains many distinct, repeated stages.
  • There are registers between these stages which keep intermediate results.
  • The clock signal synchronises the flow of data.
  • This improves performance as registers are not overwritten.
40
Q

In LMC, why do BRP and BRZ instructions cause issues with pipelining?

A

In BRP and BRZ instructions there are two possible outcomes. The correct outcome can not be determined until execution, this means if pipelining is used the CPU could fetch/decode the wrong instruction causing disruption.

41
Q

What is a register?

A

A small amount of high-speed memory contained in the CPU.

42
Q

What are the different uses of the Accumulator: