(a) Given the following program fragment in C or Java static int a = 3; static int f(int x,
int y) { int z = a+x; ...; return ... } explain how the four variables (a, x, y and z) are
accessed from within f at the instruction level for an architecture such as MIPS, ARM or
x86. Pay particular attention as to how and when storage is allocated for these variables,
and which system components of a standard compile-link-and-execute model are
involved in selecting the instruction and determining the run-time address calculation.
Your answer should briefly explain what occurs when f makes a recursive call to itself.
(b) Suppose we extend the language to allow nested function definitions: static int a = 3;
static int f(int x) { static int g(int y) { int z = a+x; ...; return ... } return g(7); }
(i) Complete the definition of g in such a way that, during execution of a call to f, the
difference between the addresses allocated to x and y varies.
(ii) Explain a possible run-time mechanism that allows all four variables to be accessed
from inside g.
(c) Suppose function-valued variables are added to the language, e.g.: funvar double
v(double);
v = (...) ? sin : cos; and a pointer to code or to data is represented as a 32-bit value. How
many bits might naturally be used to hold v? Justify your answer, emphasising the way in
which it might differ according to whether the language is as given in part (a) or part (b)
above.

You might want to ask this in a C or Java forum...

Good Luck

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.