In this problem, we will explore the logic behind the code in lines 5-11 of Figure 3.43(b),

Question:

In this problem, we will explore the logic behind the code in lines 5-11 of Figure 3.43(b), where space is allocated for variable-size array p. As the annotations of the code indicate, let us let s1 denote the address of the stack pointer after executing the subq instruction of line 4. This instruction allocates the space for local variable i. Let s2 denote the value of the stack pointer after executing the subq instruction of line 7. This instruction allocates the storage for local array p. Finally, let p denote the value assigned to registers %r8 and %rcx in the instructions of lines 10-11. Both of these registers are used to reference array p.
The right-hand side of Figure 3.44 diagrams the positions of the locations indicated by s1, s2, and p. It also shows that there may be an offset of e2 bytes between the values of s1 and p. This space will not be used. There may also be an offset of e1 bytes between the end of array p and the position indicated by s1.

A. Explain, in mathematical terms, the logic in the computation of s2 on lines 5-7. 

B. Explain, in mathematical terms, the logic in the computation of p on lines 8-10.

C. For the following values of n and s1, trace the execution of the code to determine what the resulting values would be for s2, p, e1, and e2.

n 5 6 $1 2,065 2,064 $2 P e1 2

D. What alignment properties does this code guarantee for the values of s2 and p?

Figure 3.43(b)

(b) Portions of generated assembly code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 long vframe

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

Step by Step Answer:

Related Book For  book-img-for-question

Computer Systems A Programmers Perspective

ISBN: 9781292101767

3rd Global Edition

Authors: Randal E. Bryant, David R. O'Hallaron

Question Posted: