ceng 3420 lecture 06 datapath
play

CENG 3420 Lecture 06: Datapath Bei Yu byu@cse.cuhk.edu.hk - PowerPoint PPT Presentation

CENG 3420 Lecture 06: Datapath Bei Yu byu@cse.cuhk.edu.hk CENG3420 L06.1 Spring 2018 The Processor: Datapath & Control q We're ready to look at an implementation of the MIPS q Simplified to contain only: memory-reference


  1. CENG 3420 Lecture 06: Datapath Bei Yu byu@cse.cuhk.edu.hk CENG3420 L06.1 Spring 2018

  2. The Processor: Datapath & Control q We're ready to look at an implementation of the MIPS q Simplified to contain only: ● memory-reference instructions: lw, sw ● arithmetic-logical instructions: add, addu, sub, subu, and, or, xor, nor, slt, sltu ● arithmetic-logical immediate instructions: addi, addiu, andi, ori, xori, slti, sltiu ● control flow instructions: beq, j q Generic implementation: ● use the program counter (PC) to supply Fetch PC = PC+4 the instruction address and fetch the instruction from memory Exec Decode (and update the PC) ● decode the instruction (and read registers) ● execute the instruction CENG3420 L06.2 Spring 2018

  3. Abstract Implementation View q Two types of functional units: ● elements that operate on data values (combinational) ● elements that contain state (sequential) Write Data Instruction Address Read Register Memory Data Reg Addr Data Read Data Memory File PC Address Instruction ALU Reg Addr Read Write Data Data Reg Addr q Single cycle operation q Split memory (Harvard) model - one memory for instructions and one for data CENG3420 L06.3 Spring 2018

  4. Fetching Instructions q Fetching instructions involves ● reading the instruction from the Instruction Memory ● updating the PC value to be the address of the next (sequential) instruction clock Add 4 Fetch PC = PC+4 Instruction Memory Exec Decode Read PC Instruction Address ● PC is updated every clock cycle, so it does not need an explicit write control signal ● Instruction Memory is read every clock cycle, so it doesn’t need an explicit read control signal CENG3420 L06.4 Spring 2018

  5. Decoding Instructions q Decoding instructions involves ● sending the fetched instruction’s opcode and function field bits to the control unit Fetch Control PC = PC+4 Unit Exec Decode Read Addr 1 Read Register Data 1 Read Addr 2 Instruction File Write Addr Read Data 2 Write Data ● reading two values from the Register File - Register File addresses are contained in the instruction CENG3420 L06.5 Spring 2018

  6. Reading Registers “Just in Case” q Note that both RegFile read ports are active for all instructions during the Decode cycle using the rs and rt instruction field addresses ● Since haven’t decoded the instruction yet, don’t know what the instruction is ! ● Just in case the instruction uses values from the RegFile do “work ahead” by reading the two source operands Which instructions do make use of the RegFile values? CENG3420 L06.6 Spring 2018

  7. EX: q All instructions (except j ) use the ALU after reading the registers. Please analyze memory- reference, arithmetic, and control flow instructions. CENG3420 L06.7 Spring 2018

  8. Executing R Format Operations q R format operations ( add, sub, slt, and, or ) 31 25 20 15 10 5 0 R-type: op rs rt rd shamt funct ● perform operation (op and funct) on values in rs and rt ● store the result back into the Register File (into location rd) RegWrite ALU control Read Addr 1 Fetch Read Register Data 1 PC = PC+4 overflow Read Addr 2 Instruction File zero ALU Write Addr Exec Decode Read Data 2 Write Data ● Note that Register File is not written every cycle (e.g. sw ), so we need an explicit write control signal for the Register File CENG3420 L06.8 Spring 2018

  9. Consider the slt Instruction q Remember the R format instruction slt slt $t0, $s0, $s1 # if $s0 < $s1 # then $t0 = 1 # else $t0 = 0 ● Where does the 1 (or 0) come from to store into $t0 in the Register File at the end of the execute cycle? RegWrite ALU control Read Addr 1 Read Register Data 1 overflow Read Addr 2 Instruction File zero ALU Write Addr Read Data 2 Write Data CENG3420 L06.9 Spring 2018

  10. Executing Load and Store Operations q Load and store operations have to 31 25 20 15 0 I-Type: address offset op rs rt ● compute a memory address by adding the base register (in rs) to the 16-bit signed offset field in the instruction - base register was read from the Register File during decode - offset value in the low order 16 bits of the instruction must be sign extended to create a 32-bit signed value ● store value, read from the Register File during decode, must be written to the Data Memory ● load value, read from the Data Memory, must be stored in the Register File CENG3420 L06.10 Spring 2018

  11. Executing Load and Store Operations, con’t RegWrite ALU control MemWrite overflow zero Read Addr 1 Read Address Register Data 1 Read Addr 2 Instruction Data File Read Data Memory ALU Write Addr Read Write Data Data 2 Write Data MemRead Sign Extend 16 32 CENG3420 L06.11 Spring 2018

  12. Executing Branch Operations q Branch operations have to 31 25 20 15 0 I-Type: address offset op rs rt ● compare the operands read from the Register File during decode (rs and rt values) for equality ( zero ALU output) ● compute the branch target address by adding the updated PC to the sign extended16-bit signed offset field in the instruction - “base register” is the updated PC - offset value in the low order 16 bits of the instruction must be sign extended to create a 32-bit signed value and then shifted left 2 bits to turn it into a word address CENG3420 L06.12 Spring 2018

  13. Executing Branch Operations, con’t Branch Add target Add 4 Shift address left 2 ALU control PC zero (to branch Read Addr 1 control logic) Read Register Data 1 Read Addr 2 Instruction File ALU Write Addr Read Data 2 Write Data Sign Extend 16 32 CENG3420 L06.13 Spring 2018

  14. Executing Jump Operations q Jump operations have to 31 25 0 J-Type: jump target address op ● replace the lower 28 bits of the PC with the lower 26 bits of the fetched instruction shifted left by 2 bits Add 4 4 Jump Instruction Shift address Memory left 2 28 Read PC Instruction Address 26 CENG3420 L06.14 Spring 2018

  15. Creating a Single Datapath from the Parts q Assemble the datapath elements, add control lines as needed, and design the control path q Fetch, decode and execute each instruction in one clock cycle – single cycle design ● no datapath resource can be used more than once per instruction, so some must be duplicated (e.g., why we have a separate Instruction Memory and Data Memory) ● to share datapath elements between two different instruction classes will need multiplexors at the input of the shared elements with control lines to do the selection q Cycle time is determined by length of the longest path CENG3420 L06.15 Spring 2018

  16. Fetch, R, and Memory Access Portions Add RegWrite ALU control MemWrite 4 ovf zero Read Addr 1 Instruction Read Address Register Memory Data 1 Read Addr 2 Data Read File PC Instruction Read Data Memory ALU Address Write Addr Read Write Data Data 2 Write Data MemRead Sign Extend 16 32 CENG3420 L06.16 Spring 2018

  17. Multiplexor Insertion Add RegWrite ALUSrc ALU control MemWrite MemtoReg 4 ovf zero Read Addr 1 Instruction Read Address Register Memory Data 1 Read Addr 2 Data Read File PC Instruction Read Data Memory ALU Address Write Addr Read Write Data Data 2 Write Data MemRead Sign Extend 16 32 CENG3420 L06.17 Spring 2018

  18. Clock Distribution System Clock clock cycle RegWrite MemWrite Add ALUSrc ALU control MemtoReg 4 ovf zero Read Addr 1 Instruction Read Address Register Memory Data 1 Read Addr 2 Data Read File PC Instruction Read Data Memory ALU Address Write Addr Read Write Data Data 2 Write Data MemRead Sign Extend 16 32 CENG3420 L06.18 Spring 2018

  19. Adding the Branch Portion Add Add 4 Shift left 2 PCSrc RegWrite ALUSrc ALU control MemWrite MemtoReg ovf zero Read Addr 1 Instruction Read Address Register Memory Data 1 Read Addr 2 Data Read File PC Instruction Read Data Memory ALU Address Write Addr Read Write Data Data 2 Write Data MemRead Sign Extend 16 32 CENG3420 L06.19 Spring 2018

  20. Our Simple Control Structure q We wait for everything to settle down ● ALU might not produce “right answer” right away ● Memory and RegFile reads are combinational (as are ALU, adders, muxes, shifter, signextender) ● Use write signals along with the clock edge to determine when to write to the sequential elements (to the PC, to the Register File and to the Data Memory) q The clock cycle time is determined by the logic delay through the longest path We are ignoring some details like register setup and hold times CENG3420 L06.20 Spring 2018

  21. Summary: Adding the Control q Selecting the operations to perform (ALU, Register File and Memory read/write) q Controlling the flow of data (multiplexor inputs) q Information comes from the 32 bits of the instruction 31 25 20 15 10 5 0 q Observations R-type: op rs rt rd shamt funct ● op field always 31 25 20 15 0 in bits 31-26 I-Type: ● addr of two address offset op rs rt registers to be read are always specified by the rs and rt fields (bits 25-21 and 20-16) ● base register for lw and sw always in rs (bits 25-21) ● addr. of register to be written is in one of two places – in rt (bits 20-16) for lw; in rd (bits 15-11) for R-type instructions ● offset for beq, lw, and sw always in bits 15-0 CENG3420 L06.21 Spring 2018

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend