processor structure and function chapter8:. cpu structure cpu must: fetch instructions –read...

51
Processor Structure and Function Chapter8:

Upload: alexis-harrison

Post on 19-Jan-2016

244 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Processor Structure and

Function

Chapter8:

Page 2: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

CPU Structure

CPU must: Fetch instructions

– Read instruction from memory

Interpret instructions– Instruction decoded to determine the action

Fetch data – Execution Instruction may require reading data from

memory/ I/O module

Process data– Execution Instruction may require performing some

arithmetic/ logical operation on data

Write data– Result from execution may require writing data to

memory/ I/O module

Page 3: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

CPU With Systems Bus

Major component of processor:

ALU CU Registers (internal memory)

ALU does the actual computation/processing of data CU controls the data and instruction movement into and out of the processor. Also controls ALU operation

Page 4: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

CPU Internal Structure

Page 5: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Registers

CPU must have some working space (temporary storage) called registers

Number and function vary between processor designs

One of the major design decisionsTop level of memory hierarchy

Page 6: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

User Visible Registers

Enable machine/assembly language programmer to minimize main memory reference by optimizing use of register

Category : General Purpose Data Address Condition Codes

Page 7: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

General Purpose Registers (1)

May be true general purposeMay be restricted (eg. For floating point /

stack operation)May be used for data or addressing

Data – only hold data Accumulator

Addressing Segment pointer Index register Stack pointer

Page 8: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

General Purpose Registers (2)

Make them general purpose—Increase flexibility and programmer options—Increase instruction size & complexity

Make them specialized—Smaller (faster) instructions—Less flexibility

Page 9: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

How Many GP Registers?

Between 8 - 32Fewer = more memory referencesMore does not reduce memory references

and takes up processor real estateSee also RISC

Page 10: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

How big?

Large enough to hold full addressLarge enough to hold full wordOften possible to combine two data

registers—C programming—double int a;—long int a;

Page 11: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Condition Code Registers

Sets of individual bits—e.g. result of last operation was zero

Can be read (implicitly) by programs—e.g. Jump if zero

Can not (usually) be set by programs

Page 12: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Control & Status Registers

Variety of processor registers that are employed to control operation of processor

4 registers are necessary to instruction execution:1. Program Counter2. Instruction Decoding Register3. Memory Address Register4. Memory Buffer Register

Revision: what do these all do?

Page 13: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Program Status Word

Processor design include register or set of registers and known as PSW, that contain information

contains condition codes + other status info Common field or flags include:

Sign of last result Zero Carry Equal Overflow Interrupt enable/disable Supervisor

Page 14: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Supervisor Mode

Intel ring zeroKernel modeAllows privileged instructions to executeUsed by operating systemNot available to user programs

Page 15: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Other Registers

May have registers pointing to:—Process control blocks (see O/S)—Interrupt Vectors (see O/S)

N.B. CPU design and operating system design are closely linked

Page 16: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Example Register Organizations

Page 17: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Instruction Cycle

RevisionStallings Chapter 3

Page 18: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Indirect Cycle

May require memory access to fetch operands

Indirect addressing requires more memory accesses

Can be thought of as additional instruction subcycle

Page 19: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Instruction Cycle with Indirect

Page 20: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Instruction Cycle State Diagram

Page 21: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Data Flow (Instruction Fetch)

Depends on CPU designIn general:

Fetch– PC contains address of next instruction– Address moved to MAR– Address placed on address bus– Control unit requests memory read– Result placed on data bus, copied to MBR, then

to IR– Meanwhile PC incremented by 1

Page 22: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Data Flow (Fetch Diagram)

Page 23: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Data Flow (Data Fetch)

IR is examinedIf indirect addressing, indirect cycle is

performed—Right most N bits of MBR transferred to MAR—Control unit requests memory read—Result (address of operand) moved to MBR

Page 24: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Data Flow (Indirect Diagram)

Page 25: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Data Flow (Execute)

May take many formsDepends on instruction being executedMay include

—Memory read/write—Input/Output—Register transfers—ALU operations

Page 26: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Data Flow (Interrupt)SimplePredictableCurrent PC saved to allow resumption

after interruptContents of PC copied to MBRSpecial memory location (e.g. stack

pointer) loaded to MARMBR written to memoryPC loaded with address of interrupt

handling routineNext instruction (first of interrupt handler)

can be fetched

Page 27: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Data Flow (Interrupt Diagram)

Page 28: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Prefetch

Fetch accessing main memoryExecution usually does not access main

memoryCan fetch next instruction during

execution of current instructionCalled instruction prefetch

Page 29: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Improved Performance

But not doubled:—Fetch usually shorter than execution

– Prefetch more than one instruction?

—Any jump or branch means that prefetched instructions are not the required instructions

Add more stages to improve performance

Page 30: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Computer Performance(1)

Understanding computer performance: Algorithm – determines number of operations executed Programming language, compiler, architecture – determines number of machine instructions executed per operation Processor and memory system – determine how fast instruction are executed I/O system (incl. OS) – determines how fast I/O operations are executed

Page 31: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Computer Performance(2)

Page 32: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Performance – Let’s look at this…

Page 33: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Computer Performance(3)

Page 34: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Response Time and Throughput

Response Time how long it takes to do a task

Throughput total of work done per unit time

How are Response Time and Throughput affected by

replacing the processor with a faster version? adding more processors?

Page 35: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

CPU Clocking Operation of computer hardware governed by constant-rate of clock

Page 36: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Execution Time(1)

The execution time is defined in terms of:

Elapsed Time counts everything a useful number, but often not good for comparison purposes

CPU Time does not count I/O or time spent running other programs

Page 37: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Execution Time(2)

Page 38: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Basic Definition of Performance(1) For some program running on machine X, (Performance)x = 1/(execution time)x

When X is n times faster than Y machine (Performance)x / (Performance)y = n

Problem: Machine A runs a program in 20s Machine B runs the same program in 25s

How to improve performance - everything else being equal we can either:

reduce the number of required cycle for a program, or reduce the clock cycle time (clock rate)

Page 39: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Basic Definition of Performance(2)

Hardware Designer must often trade off clock rate against clock count Can we assume: # of cycle = # of instructions?

multiplication takes more time than addition floating-point operations take longer than integer accessing memory takes more time than registers

Page 40: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

CPU Time – proportional to instruction count(1)

Page 41: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

CPU Time – proportional to instruction count(2)

Any additional instruction you execute takes time.

CPU Time: proportional to clock period - how can architects reduce clock period?

Instruction’s execution time in “number of cycles” - short clock period => short execution time.

What ultimately limits an architect’s ability to reduce the clock periods?

Page 42: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

CPU Time – Example(1)

Page 43: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

CPU Time – Example(2)

Solution:

Page 44: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Aspects of CPU Performance(1)

Page 45: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Aspects of CPU Performance(2)

Page 46: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Performance Equation

Page 47: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Amdahl’s Law(1)

Page 48: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Amdahl’s Law(2)

Page 49: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Enhancement by Multiple CPUs

Page 50: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Experimental Example

Page 51: Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction

Points to remember…..