Solved–Homework 7– Solution

$30.00 $19.00

Rewrite the following delayed branch MIPS snippet to maximize performance, assuming it has forwarding. Loop: addi $v0, $v0, 1 addi $t1, $a0, 4 lw $t0, 0($t1) add $a0, $t0, $a1 addi $a0, $a0, 4 bne $t0, $0, Loop nop jr $ra Now, assume for the delayed branch code from above exercise that our hardware can…

You’ll get a: . zip file solution

 

 
Categorys:
Tags:

Description

5/5 – (2 votes)
  1. Rewrite the following delayed branch MIPS snippet to maximize performance, assuming it has forwarding.

Loop: addi $v0, $v0, 1

addi $t1, $a0, 4

lw $t0, 0($t1)

add $a0, $t0, $a1

addi $a0, $a0, 4

bne $t0, $0, Loop

nop

jr $ra

  1. Now, assume for the delayed branch code from above exercise that our hardware can execute Static Dual Issue for any two instructions at once. Using reordering (with nops for padding), but no loop unrolling, schedule the instructions to make the loop take as few clock cycles as possible.

  1. How many PCs would we need to implement hardware of Static Dual issue or any changes required in IF?

  1. Would any changes be required in ID to support execution of two instructions at once?

  1. Would any changes be required in EX to support execution of two instructions at once?

  1. Would any changes be required in MEM to support execution of two instructions at once?

  1. Would any changes be required in WB to support execution of two instructions at once?

  1. Are there any new hazards in terms of type or their counts in this new processor? Please enumerate them and also how to resolve them (ie stalling or better options)