Two level memory cache hierarchy-mips instruction


Question1. Detail for each of four following MIPS instructions, which actions are being taken at each of their five steps. Don’t forget to mention how and through which steps each instruction updates the program counter.

a) jalr $s0, $s1

b) sw $s1, 24($t0)

c) slt $t0, $s3, $s4

d) jal 1048576

Question2. Consider these two potential additions to MIPS instruction set and elucidate how they would restrict pipelining.

a) cp d1(r1), d2(r2)

- Copy contents of word at address c address contents of r2 plus offset d2 into address contents of r1 plus displacement d2.

b) incr d2(r2)

- Adds one to the contents of word at address contents of r2 plus offset d2.

Question3. Elucidate how you would pipeline the four following pairs of statements.

a) add $t0, $s0, $s1
    beq $s1,$s2, 300

b) add $t2, $t0, $t1
    sw $t3, 36($t2)

c) add $t0, $s0, $s1
    beq $t0,$s2, 300

d) lw $t0, 24($t1)
     sub $s2, $t0, $t1

Question4. A computer system has a 2-level memory cache hierarchy. The L1 cache has a zero hit penalty, a miss penalty of 5 ns and a hit rate of 95 percent. The L2 cache has a miss penalty of 100 ns and a hit rate of 90 percent.

a) How many cycles are lost for each instruction accessing memory when the CPU clock rate is 2 GHz?

b) We can either raise the hit rate of topmost cache to 98 percent or raise the hit rate of the second cache to 95 percent. Which improvement would have more impact?

Question5. A virtual memory system has a virtual address space of 4 Gigabytes and the page size of 8 Kilobytes. Each page table entry occupies 4 bytes.

a) How many bits remain unchanged throughout the address translation?

b) How many bits are employed for the page number?

c) What is maximum number of page table entries in a page table?

Request for Solution File

Ask an Expert for Answer!!
Programming Languages: Two level memory cache hierarchy-mips instruction
Reference No:- TGS01671

Expected delivery within 24 Hours