51
1 1998 Morgan Kaufmann Publishers Chapter Five The Processor: Datapath and Control

Chapter Five The Processor: Datapath and Control

Embed Size (px)

DESCRIPTION

Chapter Five The Processor: Datapath and Control. P. C. S. r. c. M. A. d. d. u. x. A. L. U. A. d. d. 4. r. e. s. u. l. t. S. h. i. f. t. l. e. f. t. 2. R. e. g. i. s. t. e. r. s. A. L. U. o. p. e. r. a. t. i. o. n. 3. R. e. a. d. M. e. - PowerPoint PPT Presentation

Citation preview

Page 1: Chapter Five The Processor: Datapath and Control

11998 Morgan Kaufmann Publishers

Chapter Five

The Processor: Datapath and Control

Page 2: Chapter Five The Processor: Datapath and Control

21998 Morgan Kaufmann Publishers

Building the Datapath

• Use multiplexors to stitch them together

PC

Instructionmemory

Readaddress

Instruction

16 32

Add ALUresult

Mux

Registers

WriteregisterWritedata

Readdata 1

Readdata 2

Readregister 1Readregister 2

Shiftleft 2

4

Mux

ALU operation3

RegWrite

MemRead

MemWrite

PCSrc

ALUSrc

MemtoReg

ALUresult

ZeroALU

Datamemory

Address

Writedata

Readdata M

ux

Signextend

Add

Page 3: Chapter Five The Processor: Datapath and Control

31998 Morgan Kaufmann Publishers

Control

• Selecting the operations to perform (ALU, read/write, etc.)

• Controlling the flow of data (multiplexor inputs)

• Information comes from the 32 bits of the instruction

• Example:

add $8, $17, $18 Instruction Format:

000000 10001 10010 01000 00000 100000

op rs rt rd shamt funct

• ALU's operation based on instruction type and function code

Page 4: Chapter Five The Processor: Datapath and Control

41998 Morgan Kaufmann Publishers

• e.g., what should the ALU do with this instruction• Example: lw $1, 100($2)

35 2 1 100

op rs rt 16 bit offset

• ALU control input

000 AND001 OR010 add110 subtract111 set-on-less-than

• Why is the code for subtract 110 and not 011?

Control

Page 5: Chapter Five The Processor: Datapath and Control

51998 Morgan Kaufmann Publishers

ALU Operation

• For load and store instruction, use ALU add to compute memory address.

• For R-type instruction, the operation of ALU will be determined by the funct filed, or the lower 6 bits of the 32-bit instruction.

• For branch instructions, use ALU subtraction.

Page 6: Chapter Five The Processor: Datapath and Control

61998 Morgan Kaufmann Publishers

• Must describe hardware to compute 3-bit ALU control input

– given instruction type 00 = lw, sw01 = beq, 10 = arithmetic

– function code for arithmetic

• An example of multiple level decoding methodology.

ALUOp computed from instruction type

Control

Page 7: Chapter Five The Processor: Datapath and Control

71998 Morgan Kaufmann Publishers

Setting ALU Control

Instruction ALUOp Operation Funct ALU ALU CtrlLW 00 load xxxxxx add 010SW 00 store xxxxxx add 010

Branch Equal 01 beq xxxxxx sub 110R-Type 10 add 100000 add 010R-Type 10 subtract 100010 sub 110R-Type 10 AND 100100 and 000R-Type 10 OR 100101 or 001R-Type 10 slt 101010 slt 111

Page 8: Chapter Five The Processor: Datapath and Control

81998 Morgan Kaufmann Publishers

Describing control using a truth table

ALUOp Funct field OperationALUOp1 ALUOp0 F5 F4 F3 F2 F1 F0

0 0 X X X X X X 010X 1 X X X X X X 1101 X X X 0 0 0 0 0101 X X X 0 0 1 0 1101 X X X 0 1 0 0 0001 X X X 0 1 0 1 0011 X X X 1 0 1 0 111

Page 9: Chapter Five The Processor: Datapath and Control

91998 Morgan Kaufmann Publishers

Control Signals

Signal Deasserted AssertedRegDst dest register from rt (20-16) from rd (15-11)Regwrite none write to dest registerALUSrc 2nd operand from reg output 2 from 16 bit sign extensionPCSrc PC<-- PC+4 PC<--branch destMemRead none read from memoryMemWrite none write to memoryMemtoReg put ALU result to reg put memory read data to reg

Page 10: Chapter Five The Processor: Datapath and Control

101998 Morgan Kaufmann Publishers

Control

PC

Instructionmemory

Readaddress

Instruction[31 0]

Instruction [20 16]

Instruction [25 21]

Add

Instruction [5 0]

MemtoReg

ALUOp

MemWrite

RegWrite

MemRead

BranchRegDst

ALUSrc

Instruction [31 26]

4

16 32Instruction [15 0]

0

0Mux

0

1

Control

Add ALUresult

Mux

0

1

RegistersWriteregister

Writedata

Readdata 1

Readdata 2

Readregister 1

Readregister 2

Signextend

Shiftleft 2

Mux1

ALUresult

Zero

Datamemory

Writedata

Readdata

Mux

1

Instruction [15 11]

ALUcontrol

ALUAddress

Page 11: Chapter Five The Processor: Datapath and Control

111998 Morgan Kaufmann Publishers

Control and Opcode

Instruction RegDst ALUSrcMemto-

RegReg

WriteMem Read

Mem Write Branch ALUOp1 ALUp0

R-format 1 0 0 1 0 0 0 1 0lw 0 1 1 1 1 0 0 0 0sw X 1 X 0 0 1 0 0 0beq X 0 X 0 0 0 1 0 1

• Will use 6 bit opcodes to set the nine control signals

•Figure 5.27 shows the relationship.

Page 12: Chapter Five The Processor: Datapath and Control

121998 Morgan Kaufmann Publishers

Control

• Simple combinational logic (truth tables)

Operation2

Operation1

Operation0

Operation

ALUOp1

F3

F2

F1

F0

F (5– 0)

ALUOp0

ALUOp

ALU control block

R-format Iw sw beq

Op0

Op1

Op2

Op3

Op4

Op5

Inputs

Outputs

RegDst

ALUSrc

MemtoReg

RegWrite

MemRead

MemWrite

Branch

ALUOp1

ALUOpO

Page 13: Chapter Five The Processor: Datapath and Control

131998 Morgan Kaufmann Publishers

R-type Instruction Execution Phases

• Fetch instruction from memory, increase PC

PC

Instructionmemory

Readaddress

Instruction[31 0]

Instruction [20 16]

Instruction [25 21]

Add

Instruction [5 0]

MemtoReg

ALUOp

MemWrite

RegWrite

MemRead

BranchRegDst

ALUSrc

Instruction [31 26]

4

16 32Instruction [15 0]

0

0Mux

0

1

Control

Add ALUresult

Mux

0

1

RegistersWriteregister

Writedata

Readdata 1

Readdata 2

Readregister 1

Readregister 2

Signextend

Shiftleft 2

Mux

1

ALUresult

Zero

Datamemory

Writedata

Readdata

Mux

1

Instruction [15 11]

ALUcontrol

ALUAddress

Page 14: Chapter Five The Processor: Datapath and Control

141998 Morgan Kaufmann Publishers

Phase 2

• Read from two registers

PC

Instructionmemory

Readaddress

Instruction[31 0]

Instruction [20 16]

Instruction [25 21]

Add

Instruction [5 0]

MemtoReg

ALUOp

MemWrite

RegWrite

MemRead

BranchRegDst

ALUSrc

Instruction [31 26]

4

16 32Instruction [15 0]

0

0Mux

0

1

Control

Add ALUresult

Mux

0

1

RegistersWriteregister

Writedata

Readdata 1

Readdata 2

Readregister 1

Readregister 2

Signextend

Shiftleft 2

Mux1

ALUresult

Zero

Datamemory

Writedata

Readdata

Mux

1

Instruction [15 11]

ALUcontrol

ALUAddress

Page 15: Chapter Five The Processor: Datapath and Control

151998 Morgan Kaufmann Publishers

Phase 3

• ALU operation

PC

Instructionmemory

Readaddress

Instruction[31 0]

Instruction [20 16]

Instruction [25 21]

Add

Instruction [5 0]

MemtoReg

ALUOp

MemWrite

RegWrite

MemRead

BranchRegDst

ALUSrc

Instruction [31 26]

4

16 32Instruction [15 0]

0

0Mux

0

1

ALUcontrol

Control

Add ALUresult

Mux

0

1

RegistersWriteregister

Writedata

Readdata 1

Readdata 2

Readregister 1

Readregister 2

Signextend

Mux1

ALUresult

Zero

Datamemory

ReaddataAddress

Writedata

Mux

1

Instruction [15 11]

ALU

Shiftleft 2

Page 16: Chapter Five The Processor: Datapath and Control

161998 Morgan Kaufmann Publishers

Phase 4

• Write result to register.

PC

Instructionmemory

Readaddress

Instruction[31 0]

Instruction [20 16]

Instruction [25 21]

Add

Instruction [5 0]

MemtoReg

ALUOp

MemWrite

RegWrite

MemRead

BranchRegDst

ALUSrc

Instruction [31 26]

4

16 32Instruction [15 0]

0

0Mux

0

1

ALUcontrol

Control

Shiftleft 2

Add ALUresult

Mux

0

1

RegistersWriteregister

Writedata

Readdata 1

Readdata 2

Readregister 1

Readregister 2

Signextend

Mux1

ALUresult

Zero

Datamemory

Writedata

Readdata

Mux

1

Instruction [15 11]

ALUAddress

Page 17: Chapter Five The Processor: Datapath and Control

171998 Morgan Kaufmann Publishers

Complete Datapath (Fig. 5-29)

Shiftleft 2

PC

Instructionmemory

Readaddress

Instruction[31– 0]

Datamemory

Readdata

Writedata

RegistersWriteregister

Writedata

Readdata 1

Readdata 2

Readregister 1

Readregister 2

Instruction [15– 11]

Instruction [20– 16]

Instruction [25– 21]

Add

ALUresult

Zero

Instruction [5– 0]

MemtoReg

ALUOp

MemWrite

RegWrite

MemRead

Branch

JumpRegDst

ALUSrc

Instruction [31– 26]

4

Mux

Instruction [25– 0] Jump address [31– 0]

PC+4 [31– 28]

Signextend

16 32Instruction [15– 0]

1

Mux

1

0

Mux

0

1

Mux

0

1

ALUcontrol

Control

Add ALUresult

Mux

0

1 0

ALU

Shiftleft 2

26 28

Address

Page 18: Chapter Five The Processor: Datapath and Control

181998 Morgan Kaufmann Publishers

• All of the logic is combinational

• We wait for everything to settle down, and the right thing to be done

– ALU might not produce right answer right away

– we use write signals along with clock to determine when to write

• Cycle time determined by length of the longest path

Our Simple Control Structure

Clock cycle

Stateelement

1Combinational logic

Stateelement

2

Page 19: Chapter Five The Processor: Datapath and Control

191998 Morgan Kaufmann Publishers

Single Cycle Implementation

• Calculate cycle time assuming negligible delays except:

– memory (2ns), ALU and adders (2ns), register file access (1ns)

– look at the example in the last part of Sec 5.3

MemtoReg

MemRead

MemWrite

ALUOp

ALUSrc

RegDst

PC

Instructionmemory

Readaddress

Instruction[310]

Instruction [2016]

Instruction [2521]

Add

Instruction [50]

RegWrite

4

16 32Instruction [150]

0Registers

WriteregisterWritedata

Writedata

Readdata 1

Readdata 2

Readregister 1

Readregister 2

Signextend

ALUresult

Zero

Datamemory

Address Readdata

Mux

1

0

Mux

1

0

Mux

1

0

Mux

1

Instruction [1511]

ALUcontrol

Shiftleft 2

PCSrc

ALU

Add ALUresult

Page 20: Chapter Five The Processor: Datapath and Control

201998 Morgan Kaufmann Publishers

Where we are headed

• Single Cycle Problems:

– what if we had a more complicated instruction like floating point?

– wasteful of area

• One Solution:

– use a smaller cycle time

– have different instructions take different numbers of cycles

– a multicycle datapath

Page 21: Chapter Five The Processor: Datapath and Control

211998 Morgan Kaufmann Publishers

High-level Diagram

PC

Memory

Address

Instructionor data

Data

Instructionregister

Registers

Register #

Data

Register #

Register #

ALU

Memorydata

register

A

B

ALUOut

Page 22: Chapter Five The Processor: Datapath and Control

221998 Morgan Kaufmann Publishers

• We will be reusing functional units

– ALU used to compute address and to increment PC

– Memory used for instruction and data

• Introduce new registers in main functional units

– IR for storing instruction, MDR for storing data read from memory

– A, B registers for storing data read from registers

– ALUOut register for storing ALU results

• Our control signals will not be determined solely by instruction

• We will use a finite state machine for control.

Multicycle Approach

Page 23: Chapter Five The Processor: Datapath and Control

231998 Morgan Kaufmann Publishers

• Finite state machines:

– a set of states and

– next state function (determined by current state and the input)

– output function (determined by current state and possibly input)

– We’ll use a Moore machine (output based only on current state)

Review: finite state machines

Next-statefunction

Current state

Clock

Outputfunction

Nextstate

Outputs

Inputs

Page 24: Chapter Five The Processor: Datapath and Control

241998 Morgan Kaufmann Publishers

Review: finite state machines

• Example:

– Output: NSLite, EWLite

– State: NSGreen, EWGreen

– Input: NSCar, EWCar

B. 28: State Diagram

NSlite

EWgreen

NScar

NScar

NSgreen

EWcar

EWcar______ ______

EWlite

Page 25: Chapter Five The Processor: Datapath and Control

251998 Morgan Kaufmann Publishers

• Break up the instructions into steps, each step takes a cycle

– balance the amount of work to be done

– restrict each cycle to use only one major functional unit

• At the end of a cycle

– store values for use in later cycles (easiest thing to do)

– introduce additional internal registers

• Need more multiplexors since we are sharing functional units (ALU, memory).

• Justified since cost of registers and multiplexor is much less than ALU or memory.

Multicycle Approach

Page 26: Chapter Five The Processor: Datapath and Control

261998 Morgan Kaufmann Publishers

MIPS Multicycle Datapath

• handling basic instructions

Shiftleft 2

PC

Memory

MemData

Writedata

Mux

0

1

RegistersWriteregister

Writedata

Readdata 1

Readdata 2

Readregister 1

Readregister 2

Mux

0

1

Mux

0

1

4

Instruction[15 0]

Signextend

3216

Instruction[25 21]

Instruction[20 16]

Instruction[15 0]

Instructionregister

1 Mux

0

3

2

Mux

ALUresult

ALUZero

Memorydata

register

Instruction[15 11]

A

B

ALUOut

0

1

Address

Page 27: Chapter Five The Processor: Datapath and Control

271998 Morgan Kaufmann Publishers

Multicycle Datapath (with control signals)

Shiftleft 2

MemtoReg

IorD MemRead MemWrite

PC

Memory

MemData

Writedata

Mux

0

1

RegistersWriteregister

Writedata

Readdata 1

Readdata 2

Readregister 1

Readregister 2

Instruction[15 11]

Mux

0

1

Mux

0

1

4

ALUOpALUSrcB

RegDst RegWrite

Instruction[15 0]

Instruction [5 0]

Signextend

3216

Instruction[25 21]

Instruction[20 16]

Instruction[15 0]

Instructionregister

1 Mux

0

3

2

ALUcontrol

Mux

0

1ALU

resultALU

ALUSrcA

ZeroA

B

ALUOut

IRWrite

Address

Memorydata

register

Page 28: Chapter Five The Processor: Datapath and Control

281998 Morgan Kaufmann Publishers

Multicycle Datapath (complete)

Shiftleft 2

PCMux

0

1

RegistersWriteregister

Writedata

Readdata 1

Readdata 2

Readregister 1

Readregister 2

Instruction[15 11]

Mux

0

1

Mux

0

1

4

Instruction[15 0]

Signextend

3216

Instruction[25 21]

Instruction[20 16]

Instruction[15 0]

Instructionregister

ALUcontrol

ALUresult

ALUZero

Memorydata

register

A

B

IorD

MemRead

MemWrite

MemtoReg

PCWriteCond

PCWrite

IRWrite

ALUOp

ALUSrcB

ALUSrcA

RegDst

PCSource

RegWrite

Control

Outputs

Op[5 0]

Instruction[31-26]

Instruction [5 0]

Mux

0

2

Jumpaddress [31-0]Instruction [25 0] 26 28

Shiftleft 2

PC [31-28]

1

1 Mux

0

32

Mux

0

1ALUOut

Memory

MemData

Writedata

Address

Page 29: Chapter Five The Processor: Datapath and Control

291998 Morgan Kaufmann Publishers

• Instruction Fetch

• Instruction Decode and Register Fetch

• Execution, Memory Address Computation, or Branch Completion

• Memory Access or R-type instruction completion

• Write-back step

INSTRUCTIONS TAKE FROM 3 - 5 CYCLES!

Five Execution Steps

Page 30: Chapter Five The Processor: Datapath and Control

301998 Morgan Kaufmann Publishers

• Use PC to get instruction and put it in the Instruction Register.

• Increment the PC by 4 and put the result back in the PC.

• Can be described succinctly using RTL "Register-Transfer Language"

IR = Memory[PC];PC = PC + 4;

Can we figure out the values of the control signals?

What is the advantage of updating the PC now?

Step 1: Instruction Fetch

Page 31: Chapter Five The Processor: Datapath and Control

311998 Morgan Kaufmann Publishers

• Read registers rs and rt in case we need them

• Compute the branch address in case the instruction is a branch

• RTL:

A = Reg[IR[25-21]];B = Reg[IR[20-16]];ALUOut = PC + (sign-extend(IR[15-0]) << 2);

• We aren't setting any control lines based on the instruction type (we are busy "decoding" it in our control logic)

Step 2: Instruction Decode and Register Fetch

Page 32: Chapter Five The Processor: Datapath and Control

321998 Morgan Kaufmann Publishers

• ALU is performing one of three functions, based on instruction type

• Memory Reference:

ALUOut = A + sign-extend(IR[15-0]);

• R-type:

ALUOut = A op B;

• Branch:

if (A==B) PC = ALUOut;

Step 3 (instruction dependent)

Page 33: Chapter Five The Processor: Datapath and Control

331998 Morgan Kaufmann Publishers

• Loads and stores access memory

MDR = Memory[ALUOut];or

Memory[ALUOut] = B;

• R-type instructions finish

Reg[IR[15-11]] = ALUOut;

The write actually takes place at the end of the cycle on the edge

Step 4 (R-type or memory-access)

Page 34: Chapter Five The Processor: Datapath and Control

341998 Morgan Kaufmann Publishers

• Reg[IR[20-16]]= MDR;

Write-back step

Page 35: Chapter Five The Processor: Datapath and Control

351998 Morgan Kaufmann Publishers

Summary:

Step nameAction for R-type

instructionsAction for memory-reference

instructionsAction for branches

Action for jumps

Instruction fetch IR = Memory[PC]PC = PC + 4

Instruction A = Reg [IR[25-21]]decode/register fetch B = Reg [IR[20-16]]

ALUOut = PC + (sign-extend (IR[15-0]) << 2)

Execution, address ALUOut = A op B ALUOut = A + sign-extend if (A ==B) then PC = PC [31-28] IIcomputation, branch/ (IR[15-0]) PC = ALUOut (IR[25-0]<<2)jump completion

Memory access or R-type Reg [IR[15-11]] = Load: MDR = Memory[ALUOut]completion ALUOut or

Store: Memory [ALUOut] = B

Memory read completion Load: Reg[IR[20-16]] = MDR

Page 36: Chapter Five The Processor: Datapath and Control

361998 Morgan Kaufmann Publishers

• How many cycles will it take to execute this code?

lw $t2, 0($t3)lw $t3, 4($t3)beq $t2, $t3, Label #assume notadd $t5, $t2, $t3sw $t5, 8($t3)

Label: ...

• What is going on during the 8th cycle of execution?• In what cycle does the actual addition of $t2 and $t3 takes place?

Simple Questions

Page 37: Chapter Five The Processor: Datapath and Control

371998 Morgan Kaufmann Publishers

• Value of control signals is dependent upon:

– what instruction is being executed

– which step is being performed

• Use the information we accumulated to specify a finite state machine

– specify the finite state machine graphically, or

– use microprogramming

• Implementation can be derived from specification

Implementing the Control

Page 38: Chapter Five The Processor: Datapath and Control

• How many state bits will we need?

Graphical Specification of FSM

PCWritePCSource = 10

ALUSrcA = 1ALUSrcB = 00ALUOp = 01PCWriteCond

PCSource = 01

ALUSrcA =1ALUSrcB = 00ALUOp= 10

RegDst = 1RegWrite

MemtoReg = 0

MemWriteIorD = 1

MemReadIorD = 1

ALUSrcA = 1ALUSrcB = 10ALUOp = 00

RegDst =0RegWrite

MemtoReg=1

ALUSrcA = 0ALUSrcB = 11ALUOp = 00

MemReadALUSrcA = 0

IorD = 0IRWrite

ALUSrcB = 01ALUOp = 00

PCWritePCSource = 00

Instruction fetchInstruction decode/

register fetch

Jumpcompletion

BranchcompletionExecution

Memory addresscomputation

Memoryaccess

Memoryaccess R-type completion

Write-back step

(Op = 'LW') or (Op = 'SW') (Op = R-type)

(Op

= 'B

EQ')

(Op

= 'J

')

(Op = 'SW

')

(Op

= 'L

W')

4

01

9862

753

Start

Page 39: Chapter Five The Processor: Datapath and Control

391998 Morgan Kaufmann Publishers

• Implementation:

Finite State Machine for Control

PCWrite

PCWriteCond

IorD

MemtoReg

PCSource

ALUOp

ALUSrcB

ALUSrcA

RegWrite

RegDst

NS3NS2NS1NS0

Op5

Op4

Op3

Op2

Op1

Op0

S3

S2

S1

S0

State register

IRWrite

MemRead

MemWrite

Instruction registeropcode field

Outputs

Control logic

Inputs

Page 40: Chapter Five The Processor: Datapath and Control

401998 Morgan Kaufmann Publishers

PLA Implementation

• If I picked a horizontal or vertical line could you explain it?Op5

Op4

Op3

Op2

Op1

Op0

S3

S2

S1

S0

IorD

IRWrite

MemReadMemWrite

PCWritePCWriteCond

MemtoRegPCSource1

ALUOp1

ALUSrcB0ALUSrcARegWriteRegDstNS3NS2NS1NS0

ALUSrcB1ALUOp0

PCSource0

Page 41: Chapter Five The Processor: Datapath and Control

411998 Morgan Kaufmann Publishers

• ROM = "Read Only Memory"– values of memory locations are fixed ahead of time

• A ROM can be used to implement a truth table– if the address is m-bits, we can address 2m entries in the ROM.– our outputs are the bits of data that the address points to.

m is the "height", and n is the "width"

ROM Implementation

m n

0 0 0 0 0 1 10 0 1 1 1 0 00 1 0 1 1 0 00 1 1 1 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 11 1 0 0 1 1 01 1 1 0 1 1 1

Page 42: Chapter Five The Processor: Datapath and Control

421998 Morgan Kaufmann Publishers

• How many inputs are there?6 bits for opcode, 4 bits for state = 10 address lines(i.e., 210 = 1024 different addresses)

• How many outputs are there?16 datapath-control outputs, 4 state bits = 20 outputs

• ROM is 210 x 20 = 20K bits (and a rather unusual size)

• Rather wasteful, since for lots of the entries, the outputs are the same

?i.e., opcode is often ignored

ROM Implementation

Page 43: Chapter Five The Processor: Datapath and Control

431998 Morgan Kaufmann Publishers

• Break up the table into two parts

?4 state bits tell you the 16 outputs, 24 x 16 bits of ROM

?10 bits tell you the 4 next state bits, 210 x 4 bits of ROM

?Total: 4.3K bits of ROM

• PLA is much smaller

?can share product terms

?only need entries that produce an active output

?can take into account don't cares

• Size is (#inputs #product-terms) + (#outputs #product-terms)

For this example = (10x17)+(20x17) = 460 PLA cells

• PLA cells usually about the size of a ROM cell (slightly bigger)

ROM vs PLA

Page 44: Chapter Five The Processor: Datapath and Control

441998 Morgan Kaufmann Publishers

• Complex instructions: the "next state" is often current state + 1

Another Implementation Style

AddrCtl

Outputs

PLA or ROM

State

Address select logic

Op

[5–

0]

Adder

Instruction registeropcode field

1

Control unit

Input

PCWritePCWriteCondIorD

MemtoRegPCSourceALUOpALUSrcBALUSrcARegWriteRegDst

IRWrite

MemReadMemWrite

BWrite

Page 45: Chapter Five The Processor: Datapath and Control

451998 Morgan Kaufmann Publishers

DetailsDispatch ROM 1 Dispatch ROM 2

Op Opcode name Value Op Opcode name Value000000 R-format 0110 100011 lw 0011000010 jmp 1001 101011 sw 0101000100 beq 1000100011 lw 0010101011 sw 0010

State number Address-control action Value of AddrCtl

0 Use incremented state 31 Use dispatch ROM 1 12 Use dispatch ROM 2 23 Use incremented state 34 Replace state number by 0 05 Replace state number by 0 06 Use incremented state 37 Replace state number by 0 08 Replace state number by 0 09 Replace state number by 0 0

State

Op

Adder

1

PLA or ROM

Mux3 2 1 0

Dispatch ROM 1Dispatch ROM 2

0

AddrCtl

Address select logic

Instruction registeropcode field

Page 46: Chapter Five The Processor: Datapath and Control

461998 Morgan Kaufmann Publishers

Microprogramming

• What are the microinstructions?

PCWritePCWriteCondIorD

MemtoRegPCSourceALUOpALUSrcBALUSrcARegWrite

AddrCtl

Outputs

Microcode memory

IRWrite

MemReadMemWrite

RegDst

Control unit

Input

Microprogram counter

Address select logic

Op[

5–

0]

Adder

1

Datapath

Instruction registeropcode field

BWrite

Page 47: Chapter Five The Processor: Datapath and Control

471998 Morgan Kaufmann Publishers

• A specification methodology

– appropriate if hundreds of opcodes, modes, cycles, etc.

– signals specified symbolically using microinstructions

• What would a microassembler do?

Microprogramming

LabelALU

control SRC1 SRC2Register control Memory

PCWrite control Sequencing

Fetch Add PC 4 Read PC ALU SeqAdd PC Extshft Read Dispatch 1

Mem1 Add A Extend Dispatch 2LW2 Read ALU Seq

Write MDR FetchSW2 Write ALU FetchRformat1 Func code A B Seq

Write ALU FetchBEQ1 Subt A B ALUOut-cond FetchJUMP1 Jump address Fetch

Page 48: Chapter Five The Processor: Datapath and Control

Microinstruction formatField name Value Signals active Comment

Add ALUOp = 00 Cause the ALU to add.ALU control Subt ALUOp = 01 Cause the ALU to subtract; this implements the compare for

branches.Func code ALUOp = 10 Use the instruction's function code to determine ALU control.

SRC1 PC ALUSrcA = 0 Use the PC as the first ALU input.A ALUSrcA = 1 Register A is the first ALU input.B ALUSrcB = 00 Register B is the second ALU input.

SRC2 4 ALUSrcB = 01 Use 4 as the second ALU input.Extend ALUSrcB = 10 Use output of the sign extension unit as the second ALU input.Extshft ALUSrcB = 11 Use the output of the shift-by-two unit as the second ALU input.Read Read two registers using the rs and rt fields of the IR as the register

numbers and putting the data into registers A and B.Write ALU RegWrite, Write a register using the rd field of the IR as the register number and

Register RegDst = 1, the contents of the ALUOut as the data.control MemtoReg = 0

Write MDR RegWrite, Write a register using the rt field of the IR as the register number andRegDst = 0, the contents of the MDR as the data.MemtoReg = 1

Read PC MemRead, Read memory using the PC as address; write result into IR (and lorD = 0 the MDR).

Memory Read ALU MemRead, Read memory using the ALUOut as address; write result into MDR.lorD = 1

Write ALU MemWrite, Write memory using the ALUOut as address, contents of B as thelorD = 1 data.

ALU PCSource = 00 Write the output of the ALU into the PC.PCWrite

PC write control ALUOut-cond PCSource = 01, If the Zero output of the ALU is active, write the PC with the contentsPCWriteCond of the register ALUOut.

jump address PCSource = 10, Write the PC with the jump address from the instruction.PCWrite

Seq AddrCtl = 11 Choose the next microinstruction sequentially.Sequencing Fetch AddrCtl = 00 Go to the first microinstruction to begin a new instruction.

Dispatch 1 AddrCtl = 01 Dispatch using the ROM 1.Dispatch 2 AddrCtl = 10 Dispatch using the ROM 2.

Page 49: Chapter Five The Processor: Datapath and Control

491998 Morgan Kaufmann Publishers

• No encoding:

– 1 bit for each datapath operation

– faster, requires more memory (logic)

– used for VAX 780 an astonishing 400K of memory!

• Lots of encoding:

– send the microinstructions through logic to get control signals

– uses less memory, slower

• Historical context of CISC:

– Too much logic to put on a single chip with everything else

– Use a ROM (or even RAM) to hold the microcode

– It’s easy to add new instructions

Maximally vs. Minimally Encoded

Page 50: Chapter Five The Processor: Datapath and Control

501998 Morgan Kaufmann Publishers

Microcode: Trade-offs

• Distinction between specification and implementation is sometimes blurred

• Specification Advantages:

– Easy to design and write

– Design architecture and microcode in parallel

• Implementation (off-chip ROM) Advantages

– Easy to change since values are in memory

– Can emulate other architectures

– Can make use of internal registers

• Implementation Disadvantages, SLOWER now that:

– Control is implemented on same chip as processor

– ROM is no longer faster than RAM

– No need to go back and make changes

Page 51: Chapter Five The Processor: Datapath and Control

511998 Morgan Kaufmann Publishers

The Big Picture

Initialrepresentation

Finite statediagram

Microprogram

Sequencingcontrol

Explicit nextstate function

Microprogram counter+ dispatch ROMS

Logicrepresentation

Logicequations

Truthtables

Implementationtechnique

Programmablelogic array

Read onlymemory