1 / 16

Design of the Control Unit for One-cycle Instruction Execution

Design of the Control Unit for One-cycle Instruction Execution. The simple datapath with the control unit.

micheline
Télécharger la présentation

Design of the Control Unit for One-cycle Instruction Execution

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Design of the Control Unit for One-cycle Instruction Execution \course\cpeg323-05F\Topic5a-323.ppt

  2. The simple datapath with the control unit. \course\cpeg323-05F\Topic5a-323.ppt

  3. The function of each of the seven control signals. When the 1-bit control to a two-way multiplexor is asserted, the multiplexor selects the input corresponding to 1. Otherwise, if the control is deserted, the multiplexor selects the 0 input. Remember that the state elements all have the clock as an implicit input and that the clock is used in controlling writes. \course\cpeg323-05F\Topic5a-323.ppt

  4. Instruction Execution • R-type: add $x, $y, $z 4 steps • I-type: lw $x, offset ($y) 5 steps \course\cpeg323-05F\Topic5a-323.ppt

  5. ALU Instruction Execution add $x, $y, $z 1. Instruction Fetch (IF): An instruction is fetched from the instruction memory and the PC is incremented. 2. Instruction Decode (ID): Two registers, $y and $z, are read from the register file. 3. Execution (EX): The ALU operates on the data read from the register file, using the function code (bits 5-0 of the instruction) to generate the ALU function. 4. Write Back (WB): The result from the ALU is written into the register file using bits 15-11 of the instruction to select the destination register ($x). \course\cpeg323-05F\Topic5a-323.ppt

  6. The first step of an R-type instruction performs a fetch from instruction memory and increments the PC. \course\cpeg323-05F\Topic5a-323.ppt

  7. The second phase in the execution of R-type instruction reads the two source registers from the register file. \course\cpeg323-05F\Topic5a-323.ppt

  8. The third phase of execution for R-type instruction involves the ALU operating on the register data operands. \course\cpeg323-05F\Topic5a-323.ppt

  9. The final step in an R-type instruction, writing the result, is added to the active units shown for the previous three steps . \course\cpeg323-05F\Topic5a-323.ppt

  10. Memory Instruction Execution lw $x, offset ($y) 1. Instruction Fetch (IF): An instruction is fetched from the instruction memory and the PC is incremented. 2. Instruction Decode (ID): A register ($y) value is read from the register file. 3. Address Calculation (EX): The ALU computes the sum of the value read from the register file and the sign-extended lower 16 bits of the instruction (offset). 4. Memory Operation (MEM): The sum from the ALU is used as the address for the data memory. 5. Write Back (WB): The data from the memory unit is written into the register file; the register destination is given by bits 20-16 of the instruction ($x). \course\cpeg323-05F\Topic5a-323.ppt

  11. The operation of a load instruction with the simple datapath control scheme. \course\cpeg323-05F\Topic5a-323.ppt

  12. Branch Instruction Execution beq $x, $y, offset 1. Instruction Fetch (IF): An instruction is fetched from the instruction memory and the PC is incremented. 2. Instruction Decode (ID): Two registers, $x and $y, are read from the register file. 3. Branch Address calculation (EX): The ALU performs a subtract on the data values read from the register file. The value of PC + 4 is added to the sign-extended lower 16 bits of the instruction (offset); the result is the branch target address. 4. Branch Decision: The Zero result from the ALU is used to decide which adder result to store into the PC. \course\cpeg323-05F\Topic5a-323.ppt

  13. The datapath in operation for a branch equal instruction. \course\cpeg323-05F\Topic5a-323.ppt

  14. Control Unit Design RegDst ALUSrc 0p5 Control ALU0p1 ALU0p0 0p0 \course\cpeg323-05F\Topic5a-323.ppt

  15. The control function for the simple one-clock implementation is completely specified by this truth table. The top half of the table gives the combinations of input signals that correspond to the four opcodes that determine the control output setting. (Remember that Op (5-0) corresponds to bits 31-26 of the instruction, which is the opcode field.) The bottom portion of the table gives the outputs. \course\cpeg323-05F\Topic5a-323.ppt

  16. The simple control and datapath are extended to handle the jump instruction. \course\cpeg323-05F\Topic5a-323.ppt

More Related