I'm taking a Computer Architecture course right now, and we're going over basic R-type and I-type instructions (also, this is a RISC architecture), etc. I can't seem to figure out how to optimize this code.
Explanation: This code adds words in an array (pointed to by $s1) of numbers until a zero is reached. The result is stored in $t1. $t0 holds the current word.
add $t1, $zero, $zero # Initialize result to zero
again:
lw $t0, 0($s1) # Load the word from the array
beq $t0, $zero, done # Terminate if current word is a zero
add $t1, $t1, $t0 # Add current word to result
addi $s1, $s1, 4 # Point to the next word in the array
beq $t1, $t1, again # Loop again
done:
nop # Do nothing
I'm having a difficult time optimizing the code. I feel the beq $t1, $t1, again (since it's always true) is unnecessary, but I'm not sure how to remove it. Here's my attempt, but I now realize that my code would not terminate.
add $t1, $zero, $zero # Initialize result to zero
again:
lw $t0, 0($s1) # Load the word from the array
add $t1, $t1, $t0 # Add current word to result
addi $s1, $s1, 4 # Point to the next word in the array
bne $t1, $zero, again # If result is not zero, loop
done:
nop # Do nothing
I'm never checking for a terminating zero and jumping to done. But if I add another check, then wouldn't the code be the same as before?
Thank you for your help!
bne $zero, 0($s1), againfor the last line inagainwill allow you to remove the second line. Maybe? Can you compare with references like that? (Never mind, the reference I found says it can only uses registers.) – bdares Jan 26 at 19:22bne $t1,$zero,againin the second block would seem to be an obvious typo (should bebne $t0,$zero,again), but otherwise this seems a perfectly reasonable optimization – Chris Dodd Jan 26 at 19:27$t0to$zero, I'm not sure why I was thinking about comparing$t1to$zero. If you make this an answer, I will mark it as correct. Thanks! – ardavis Jan 26 at 19:29[2, 1, 0], and if each instruction was 1us, wouldn't it take 14 us in both code sets to terminate? – ardavis Jan 26 at 19:32