unit 3 part8

10

Upload: suganrhithu9389

Post on 14-Jul-2016

217 views

Category:

Documents


0 download

DESCRIPTION

Unit 3 Part8

TRANSCRIPT

Page 1: Unit 3 Part8
Page 2: Unit 3 Part8

Datapath and Control Considerations

Page 3: Unit 3 Part8

Original Design

Memory busdata lines

Figure 7.8. Three-bus organization of the datapath.

Bus A Bus B Bus C

Instructiondecoder

PC

Registerfile

Constant 4

ALU

MDR

A

B

R

MU

X

Incrementer

Addresslines

MAR

IR

Page 4: Unit 3 Part8

Instruction cache

Figure 8.18. Datapath modified for pipelined execution, with

Bus

A

Bus

B

Control signal pipeline

IMAR

PC

Registerfile

ALU

Instruction

A

B

R

decoder

Incrementer

MDR/Write

Instructionqueue

Bus

C

Data cache

Memory address

MDR/ReadDMAR

Memory address

(Instruction fetches)

(Data access)

interstage buffers at the input and output of the ALU.

Pipelined Design

- Separate instruction and data caches- PC is connected to IMAR- DMAR- Separate MDR- Buffers for ALU- Instruction queue- Instruction decoder output

- Reading an instruction from the instruction cache- Incrementing the PC- Decoding an instruction- Reading from or writing into the data cache- Reading the contents of up to two regs- Writing into one register in the reg file- Performing an ALU operation

Page 5: Unit 3 Part8

Superscalar Operation

Page 6: Unit 3 Part8

Overview• The maximum throughput of a pipelined processor is one

instruction per clock cycle.• If we equip the processor with multiple processing units

to handle several instructions in parallel in each processing stage, several instructions start execution in the same clock cycle – multiple-issue.

• Processors are capable of achieving an instruction execution throughput of more than one instruction per cycle – superscalar processors.

• Multiple-issue requires a wider path to the cache and multiple execution units.

Page 7: Unit 3 Part8

Superscalar

W : Writeresults

Dispatchunit

Instruction queue

Floating-pointunit

Integerunit

Figure 8.19. A processor with two execution units.

F : Instructionfetch unit

Page 8: Unit 3 Part8

Timing

I1 (Fadd) D1

D2

D3

D4

E1A E1B E1C

E2

E3 E3 E3

E4

W1

W2

W3

W4

I2 (Add)

I3 (Fsub)

I4 (Sub)

Figure 8.20. An example of instruction execution flow in the processor of Figure 8.19,assuming no hazards are encountered.

1 2 3 4 5 6Clock cycleTime

F1

F2

F3

F4

7

Page 9: Unit 3 Part8

Out-of-Order Execution

• Hazards• Exceptions• Imprecise exceptions• Precise exceptions

I1 (Fadd) D1

D2

D3

D4

E1A E1B E1C

E2

E3A E3B E3C

E4

W1

W2

W3

W4

I2 (Add)

I3 (Fsub)

I4 (Sub)

1 2 3 4 5 6Clock cycleTime

(a) Delayed write

F1

F2

F3

F4

7

Page 10: Unit 3 Part8

Execution Completion• It is desirable to used out-of-order execution, so that an execution unit

is freed to execute other instructions as soon as possible.• At the same time, instructions must be completed in program order to

allow precise exceptions.• The use of temporary registers• Commitment unit

I1 (Fadd) D1

D2

D3

D4

E1A E1B E1C

E2

E3A E3B E3C

E4

W1

W2

W3

W4

I2 (Add)

I3 (Fsub)

I4 (Sub)

1 2 3 4 5 6Clock cycleTime

(b) Using temporary registers

TW2

TW4

7

F1

F2

F3

F4