11. interrupts_and_stacks_flashcards

1
Q

What is a system interrupt?

A

A signal sent to the CPU to temporarily halt current execution and handle important tasks.

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

Why are system interrupts needed?

A

They allow the CPU to manage multiple tasks efficiently by switching between them.

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

What are the two ways a computer can manage multiple tasks?

A
  1. Multiple processors (expensive and power-hungry). 2. Single processor with interrupts (uses context switching).
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is context switching?

A

The process where the CPU saves the state of a process before switching to another task.

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

What is the purpose of the Program Control Block (PCB)?

A

It keeps track of a process’s state, allowing seamless execution after context switching.

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

What information is saved during context switching?

A

Program Counter (PC), registers, and Stack Pointer (SP).

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

Why must the CPU save information during context switching?

A

To restore execution later without losing progress.

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

What are the sources of interrupts?

A

Timers, input/output interfaces, user programs, and hardware failures.

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

What is the Interrupt Vector Table?

A

A table that helps the CPU locate the correct Interrupt Service Routine (ISR).

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

What are the basic steps in handling an interrupt?

A
  1. Save context, 2. Identify ISR, 3. Execute ISR, 4. Restore context, 5. Resume execution.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is an Interrupt Mask?

A

A register that enables or disables interrupts to prioritize or block lower-level IRQs.

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

Why use an Interrupt Mask?

A

To prevent lower-priority interrupts from disrupting critical operations.

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

Give an example of a task that should not be interrupted.

A

Boot code execution, ISR execution, and high-priority time-critical tasks.

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

What is the revised Fetch-Decode-Execute (FDE) cycle?

A

A modified cycle that includes checking and handling interrupts.

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

Where is the processor context stored during an interrupt?

A

In the PCB, which is implemented as a stack.

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

What is the role of the system stack?

A

To store return addresses, processor context, and temporary variables.

17
Q

How does the stack grow and shrink?

A

It grows downward as values are pushed and shrinks upward when values are popped.

18
Q

What does the Stack Pointer (SP) do?

A

Tracks the top of the stack and updates when data is pushed or popped.

19
Q

How is data pushed onto the stack?

A

Decrement SP and store data at the new address.

20
Q

How is data popped from the stack?

A

Retrieve data from SP and increment SP.

21
Q

Why is saving the return address important?

A

It allows the CPU to resume execution of the original task after handling the interrupt.

22
Q

What are the two main tasks of an Interrupt Service Routine (ISR)?

A

Handling the interrupt source and returning to the interrupted task.

23
Q

What instruction is used to return from an interrupt?

A

RETURN instruction, which restores the saved context from the stack.

24
Q

What happens when the CPU detects an interrupt?

A

It completes the current instruction, saves context, executes ISR, restores context, and resumes execution.