Open In App

GATE | GATE CS 2013 | Question 49

Like Article
Like
Save
Share
Report

Consider the same data as above question. What is the minimum number of registers needed in the instruction set architecture of the processor to compile this code segment without any spill to memory? Do not apply any optimization other than optimizing register allocation.

(A)

3

(B)

4

(C)

5

(D)

6



Answer: (B)

Explanation:

Note that for solving the above problem we are not allowed for code motion. So, we will start analyzing the code line by line and determine how many registers will be required to execute the above code snippet. Assuming the registers are numbered R1, R2, R3 and R4. The analysis has been shown in the table below 

 

So, from the above analysis we can conclude that we will need minimum 4 registers to execute the above code snippet. This explanation has been contributed by Namita Singh. 


Quiz of this Question
Please comment below if you find anything wrong in the above post


Last Updated : 17 Sep, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads