computer organization and architecture william stallings 8th edition

30
Computer Organization and Architecture William Stallings 8th Edition Chapter 3 Top Level View of Computer Function and Interconnection

Upload: more

Post on 23-Feb-2016

21 views

Category:

Documents


0 download

DESCRIPTION

Computer Organization and Architecture William Stallings 8th Edition. Chapter 3 Top Level View of Computer Function and Interconnection. Program Concept. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Computer Organization and Architecture  William Stallings  8th Edition

Computer Organization and Architecture

William Stallings 8th Edition

Chapter 3Top Level View of Computer Function and

Interconnection

Page 2: Computer Organization and Architecture  William Stallings  8th Edition

Program Concept

•The process of connecting the various components in the desired configuration as a form of programming. The resulting “program” is in the form of hardware and is termed a hardwired program.

•Hardwired systems are inflexible.•General purpose hardware can do different tasks, given

correct control signals.• Instead of re-wiring, supply a new set of control signals.

Page 3: Computer Organization and Architecture  William Stallings  8th Edition

What is a program?

•A sequence of steps.•For each step, an arithmetic or logical operation is

done.•For each operation, a different set of control signals is

needed.

Page 4: Computer Organization and Architecture  William Stallings  8th Edition

Function of Control Unit

• For each operation a unique code is provided.▫ e.g. ADD, MOVE.

• A hardware segment accepts the code and issues the control signals.

• The basic function performed by a computer is execution of a program, which consists of a set of instructions stored in memory.

• The processor does the actual work by executing instructions specified in the program.

Page 5: Computer Organization and Architecture  William Stallings  8th Edition

Components

•The Control Unit and the Arithmetic and Logic Unit constitute the Central Processing Unit.

•Data and instructions need to get into the system and results out.▫Input/output.

•Temporary storage of code and results is needed.▫Main memory.

Page 6: Computer Organization and Architecture  William Stallings  8th Edition

Computer Components: Top Level View

Page 7: Computer Organization and Architecture  William Stallings  8th Edition

Instruction Cycle

•Two steps:▫Fetch▫Execute

Page 8: Computer Organization and Architecture  William Stallings  8th Edition

Fetch Cycle•For each instruction cycle, the processor fetches an

instruction from memory.•Program Counter (PC) holds address of next instruction

to fetch.•Processor fetches instruction from memory location

pointed to by PC.• Increment PC.

▫Unless told otherwise• Instruction loaded into Instruction Register (IR).•Processor interprets instruction and performs required

actions.

Page 9: Computer Organization and Architecture  William Stallings  8th Edition

Execute Cycle• Processor-memory.

▫ data transfer between CPU and main memory.• Processor I/O.

▫ Data transfer between CPU and I/O module.• Data processing.

▫ Some arithmetic or logical operation on data.• Control.

▫ To control the alteration of sequence of operations.

▫ e.g. jump• An instruction’s execution may involve a

combination of these actions.

Page 10: Computer Organization and Architecture  William Stallings  8th Edition
Page 11: Computer Organization and Architecture  William Stallings  8th Edition

Example of Program Execution

Page 12: Computer Organization and Architecture  William Stallings  8th Edition

Instruction Cycle State Diagram

Page 13: Computer Organization and Architecture  William Stallings  8th Edition

Instruction Cycle State

• Instruction address calculation (iac): Determine the address of the next instruction to be executed. Usually, this involves adding a fixed number to the address of the previous instruction.

• Instruction fetch (if): Read instruction from its memory location into the processor.

• Instruction operation decoding (iod): Analyze instruction to determine type of operation to be performed and operand(s) to be used.

• Operand address calculation (oac): If the operation involves reference to an operand in memory or available via I/O, then determine the address of the operand.

Page 14: Computer Organization and Architecture  William Stallings  8th Edition

Instruction Cycle State

• Operand fetch (of): Fetch the operand from memory or read it in from I/O.

• Data operation (do): Perform the operation indicated in the instruction.

• Operand store (os): Write the result into memory or out to I/O.

Page 15: Computer Organization and Architecture  William Stallings  8th Edition

Instruction Cycle State

• States in the upper part of the previous figure involve an exchange between the processor and either memory or an I/O module.

• States in the lower part of the diagram involve only internal processor operations.

• The (oac) state appears twice, because an instruction may involve a read, a write, or both.

• A single instruction can specify an operation to be performed on a vector (one-dimensional array) of numbers or a string (one-dimensional array) of characters.

Page 16: Computer Organization and Architecture  William Stallings  8th Edition

Interrupts• Mechanism by which other modules (e.g. I/O) may

interrupt normal sequence of processing.

Classes of Interrupts:• Program: generated by some condition that occurs

as a result of an instruction execution e.g. arithmetic overflow, division by zero.

• Timer: generated by a timer within the processor. This allows the operating system to perform certain functions on a regular basis.

• I/O: generated by an I/O controller, to signal normal completion of an operation or to signal a variety of error conditions.

Page 17: Computer Organization and Architecture  William Stallings  8th Edition

InterruptsClasses of Interrupts:• Hardware failure: generated by a failure such as power failure or

memory parity error.

• Interrupts are provided primarily as a way to improve processing efficiency since most external devices are much slower than the processor.

• Of the next figure, The user program performs a series of WRITE calls interleaved with processing. Code segments 1, 2, and 3 refer to sequences of instructions that do not involve I/O.

Page 18: Computer Organization and Architecture  William Stallings  8th Edition

Program Flow Control

Page 19: Computer Organization and Architecture  William Stallings  8th Edition

Interrupts• The WRITE calls are to an I/O program to perform the actual I/O

operation.

The I/O program consists of three sections:• A sequence of instructions, labeled 4 in the figure, to prepare for the

actual I/O operation.• The actual I/O command.• A sequence of instructions, labeled 5 in the figure, to complete the

operation.• Because the I/O operation may take a relatively long

time to complete, the I/O program is hung up waiting for the operation to complete; hence, the user program is stopped at the point of the WRITE call for some considerable period of time.

Page 20: Computer Organization and Architecture  William Stallings  8th Edition

Interrupt Cycle

•Added to instruction cycle.•Processor checks for interrupt.

▫Indicated by an interrupt signal.•If no interrupt, fetch next instruction.•If interrupt pending:

▫Suspend execution of current program ▫Save context▫Set PC to start address of interrupt handler

routine▫Process interrupt▫Restore context and continue interrupted

program

Page 21: Computer Organization and Architecture  William Stallings  8th Edition

• When the external device becomes ready to be, the I/O module for that external device sends an interrupt request signal to the processor.

• The processor responds by suspending operation of the current program, branching off to a program to service that particular I/O device, known as an interrupt handler, and resuming the original

• Execution after the device is serviced. • An interrupt is just that: an interruption of the

normal sequence of execution. When the interrupt processing is completed, execution resumes.

• The processor and the operating system are responsible for suspending the user program and then resuming it at the same point.

Page 22: Computer Organization and Architecture  William Stallings  8th Edition

Transfer of Control via Interrupts

Page 23: Computer Organization and Architecture  William Stallings  8th Edition

Instruction Cycle with Interrupts

Page 24: Computer Organization and Architecture  William Stallings  8th Edition

Program Timing - Short I/O Wait

Page 25: Computer Organization and Architecture  William Stallings  8th Edition

Program Timing - Long I/O Wait

Page 26: Computer Organization and Architecture  William Stallings  8th Edition

Instruction Cycle (with Interrupts) - State Diagram

Page 27: Computer Organization and Architecture  William Stallings  8th Edition

Multiple Interrupts•Disable interrupts

▫Processor will ignore further interrupts whilst processing one interrupt

▫Interrupts remain pending and are checked after first interrupt has been processed

▫Interrupts handled in sequence as they occur•Define priorities

▫Low priority interrupts can be interrupted by higher priority interrupts

▫When higher priority interrupt has been processed, processor returns to previous interrupt

Page 28: Computer Organization and Architecture  William Stallings  8th Edition

Multiple Interrupts - Sequential

Page 29: Computer Organization and Architecture  William Stallings  8th Edition

Multiple Interrupts – Nested

Page 30: Computer Organization and Architecture  William Stallings  8th Edition

Time Sequence of Multiple Interrupts