1.1.1 Structure Of The Processor Flashcards

1
Q

What is Moore’s law?

A

The number of transistors on a processor will double every two years.

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

What does the CU do?

A

Sends out control signals to other parts of the CPU.
Fetches instructions from memory, decodes them and then executes them.
Contains the clock.

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

What does the ALU do?

A

Performs arithmetic.
Performs logical operations (AND, NOT, OR etc.)
Performs logical comparisons like greater than.

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

What are the 5 specific registers?

A

PC, CIR, MAR, MDR, ACC.

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

What does the PC do?

A

It hold the location of the next instruction.
Jump instructions are when the flow of control is altered.

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

What is the MAR?

A

It stores the address in memory of the data that is to be fetched from or sent to memory.

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

What is the MDR?

A

Stores the data that has been fetched from or is about to be stored in memory.

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

What is the CIR?

A

Stores the most recently fetched instruction, waiting to be decoded and executed.

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

What is the ACC?

A

It Holds the results of calculations and operations performed by the ALU.

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

What are the 3 buses?

A

Address Bus, Data Bus and Control Bus.

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

What is the Address Bus?

A

It provides a memory address to the system memory or input/output devices.

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

What is the Data Bus?

A

It transfers data between the CPU and memory or input/output devices and vice verse.

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

What is the Control Bus?

A

It provides control signals that cause the memory or input/output devices to perform a read or write operation.

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

Describe the Fetch sequence (hahaha)!

A

1: The PC copies the address of the next instruction it contains into the MAR.
2: The CU loads the address to be used onto the address bus.
3: The CU sends a read signal down the control bus that causes RAM to place the instruction being asked for onto the data bus.
4: The instruction on the data bus is loaded onto the MDR.
5: The MDR copies the instruction into the CIR.
6: The PC can now be incremented by one to point to the next instruction.

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

Describe the Decode sequence?

A

The CU examines the instruction in the CIR and decodes it. (Every CPU has an instruction set that defines what the decoder understands.)

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

Describe the Execute stage?

A

The instruction in the CIR is carried out by the CPU.
This process may use the ACC, the CLU as well as taking data values from memory.
Then Repeat the Process!

17
Q

What are the 3 key factors affecting CPU performance?

A

1: Clock Speed
2: Cache Memory
3: Multiple Cores
(maybe pipelining)
((as well as GPU, RAM and secondary storage))

18
Q

Pipelining Definition?

A

The technique of fetching an instruction while the prior one is being decoded and the one before is being executed.

19
Q

What are the issues with pipelining?

A

Sometimes programs branch and the program will have to predict this. If the controller makes a mistake, the pipelines will have to be emptied (flushed) which will degrade performance.

20
Q

What actually is the VON Neumann Architecture?

A

Something that stores program instructions and data together in the same memory unit.

21
Q

What are the key features of VNA?

A

1: Shared memory space for instructions and data.
2: Data stored in binary.
3: Single CU.
4: Single ALU.
5: Follows a linear FDE cycle.
6: Processes instructions sequentially.
7: Registers are used for fast access to data and instructions.

22
Q

What is the VN Bottleneck?

A

When the CPU runs much faster than the transfer speed of the data bus which could lead to the CPU waiting for data and instructions to arrive. (A solution could be cache memory.)

23
Q

What is contemporary processor architecture?

A

Based on VNA, but also uses:
1: Pipelining.
2: Cache Memory.
3: Multicore and Parallel Computing.