How many cycles does it take for all instructions in a single iteration of the above loop

Question:

How many cycles does it take for all instructions in a single iteration of the above loop to execute?


Consider the following piece of C code:for (j 2; j <1000; j++) D[j] = D[j-1]+D[j-2]; The MIPS code corresponding to the above fragment is: r2,r2,999

Instructions have the following associated latencies (in cycles):ADD.D 4 L.D 6 S.D 1 DADDIU 2

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question

Computer Organization And Design The Hardware Software Interface

ISBN: 9780123747501

4th Revised Edition

Authors: David A. Patterson, John L. Hennessy

Question Posted: