Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Suppose you have a RISC machine with a 2.4 GHz clock (i.e., the clock ticks 2.4 billion times per second). This particular computer uses an

image text in transcribed

Suppose you have a RISC machine with a 2.4 GHz clock (i.e., the clock ticks 2.4 billion times per second). This particular computer uses an instruction cache, a data cache, an operand fetch unit, and an operand store unit. The instruction set includes simple instructions with the following timings: SET reg, immed LOAD reg, mem ADD reg, reg ADD reg, immed LOOP _Label Name ; 3 clock cycles ; 2 clock cycles ; 4 clock cycles 2 clock cycles ; 8 clock cycles , Assume that the following code fragment is used to sum the element of a numeric array. SET reg1, 0 ; initialize sum SET reg2, MAX_SIZE ; initialize loop counter SET reg3, @list ;initialize array pointer _ProcessArray: LOAD reg4, [reg3] ;fetch current list element ADD regi, reg4 ; add current list element ADD reg3, 4 ;move array pointer to next element LOOP_ProcessArray ;auto-decrement reg2, jump to more if reg2 = 0 If the initialization code has already executed (i.e. the SET instructions have already finished execution) how many array elements can be processed in 4.7 milliseconds (ms)? Round your answer to the nearest integer. Recall that 1 ms = 0.001 seconds. Also assume that there are no physical memory limitations, implying that the array can be as large as desired

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases Illuminated

Authors: Catherine Ricardo

2nd Edition

1449606008, 978-1449606008

More Books

Students also viewed these Databases questions

Question

Question What are the advantages of a written bonus plan?

Answered: 1 week ago