CPSC 388 – Compiler Design and Construction Runtime Environments.

24
CPSC 388 – Compiler Design and Construction Runtime Environments

Transcript of CPSC 388 – Compiler Design and Construction Runtime Environments.

CPSC 388 – Compiler Design and Construction

Runtime Environments

Announcements

Test Problem 1c, the third example on strings in language is incorrect:432232339323Should be:432232339313

Test due Wednesday October 21st

Runtime Environments

How storage is laid out at runtime. What information is stored for each

method. What happens during method call and

return for two different approaches to storage layout: static and stack allocation.

Memory Organization

Code

Static Data

Heap

Stack

LowestAddress

HighestAddress

Stack and Heap

Stack storesOne activiation record (AR) for each

currently active method

Heap storesDynamically allocated memory

(anytime “new” is used in java)

int a[11];void readArray() { /*reads 9 ints into a[1]-a[9] */}

int partition(int m, int n) { /*picks a separator value v, and partitions a[m..n] so that a[m..p-1] are less than v, a[p]=v and a[p+1,n] are equal to or greater than v. Returns p. */

}

void quicksort(int m, int n) {int I;if (n > m){

i=partition(m,n);quicksort(m,i-1);quicksort(i+1,n);

}}

main() {readArray();a[0] =-9999;a[10]= 9999;quicksort(1,9);

}

enter main()enter readArray()leave readArray()enter quicksort()

enter partition(1,9)leave partition(1,9)enter quicksort(1,3)

…leave quicksort(1,3)enter quicksort(5,9)

…leave quicksort(5,9)

leave quicksort(1,9)leave main()

Activation Tree

m

r q(1,9)

p(1,9) q(1,3) q(5,9)

p(1,3) q(1,0) q(2,3)

p(2,3) q(2,1) q(3,3)

p(5,9) q(5,5) q(7,9)

p(7,9) q(7,7) q(9,9)

Suppose that control lies within a particular activiationOf some procedure, N, of the activation tree. The stackCorresponds to the ancestors of node N.

You try it

Suppose partition always picks a[m] as the seperator and suppose that order is preserved as much as possible. Draw the activation tree for array

9, 8, 7, 6, 5, 4, 3, 2, 1 Draw the activation tree for array

1, 3, 5, 7, 9, 2, 4, 6, 8 What is the largest number of AR that

appear on the stack?

Activation RecordLow address

High address

Usually AR stored in the stack. Some languages(such as concurrent languages) store AR in heapor static area

Temporaries

Local Data

Saved machine status

Access link

Control link

Actual Parameters

Returned value

Data in Activation Record Temporary values, those that arise from evaluation

of expressions that do not fit into registers Local data belonging to the procedure Machine Status, includes the return address and the

contents of registers that will be used and must be restored

Access link used to locate data needed by called procedure but found in another AR

Control link pointing to AR of caller Return value Actual parameters, may be placed in registers

Static Allocation of AR Every time a method is called, its

parameters and local variables are stored in the same locations

ADVANTAGES + fast access to all names (e.g., no need to

compute the address of a variable at runtime) + no overhead of stack/heap manipulation

DISADVANTAGES - no recursion - no dynamic allocation

Static Allocation – Calling Method

Copies each argument into the corresponding parameter's space in the called method's activation record (AR).

May save some registers (in its own AR). Performs a "Jump & Link": Jump to the first

instruction of the called method, and put the address of the next instruction after the call (the return address) into the special RA register (the "return address" register).

Static Allocation – Called Method

Copies the return address from RA into its AR's return-address field.

May save some registers (in its AR).

May initialize local data.

Static Allocation – Called method return

Restores the values of any registers that it saved.

Jumps to the address that it saved in its AR's return-address field.

Static Allocation – Calling method after return

Restores any registers that it saved.

If the called method was non-void (returned a value), put the return value (which may be in a special register or in the AR of the called method) in the appropriate place. For example, if the code wasx = f();then the return value should be copied into variable x.

Let’s Try It – Static AllocationAssume each AR contains local variables, parameters, the return address,

and (for non-void methods) the return value. Trace the execution of the following code by filling in the appropriate fields of the activation records of the three methods.

void error(String name, String msg) { System.out.println("ERROR in"+name+":"+msg);

}int summation(int max) {

int sum = 1;for (int k=1; k<=max; k++) { sum += k; }return sum;

}void main() {

int x = summation(3);if (x != 6) error("main", "bad value returned by summation");

}

Stack Allocation Each time a method is called, a new AR

(also called a stack frame) is pushed onto the stack.

The AR is popped when the method returns. A register (SP for "stack pointer") points to

the top of the stack. Another register (FP for "frame pointer")

points to the start of the current method's AR.

Steps of a method call

Calling Method start call steps

Called Method startup steps

Called Method end steps

Calling Method ends call steps

Calling Method Start Call May save some registers (in its own AR).

If the language allows nested methods, may set up the access link; this means pushing the appropriate value -- more on this later -- onto the stack.

Pushes the parameters onto the stack (into space that will be part of the called method's AR).

Does a "Jump & Link" -- jumps to the 1st instruction of the called method, and puts the address of the next instruction (the one after the call) into register RA.

Called Method Startup Pushes the return address (from RA) onto the stack (into its

AR's "return address" field). Pushes the old FP into its AR's "control link" field. Sets the FP to point to the bottom of its AR (to the "access

link" field if there is one; otherwise, to the first parameter). The address of that field is computed as follows: SP + (sizes of params) + (size of "access link" field) + (size of "return address" field) + (size of "control link" field). All of these sizes are computed at compile time. (Note that values are added to the SP because we are assuming that "lower" on the stack means a higher address.)

May save some registers (by pushing them onto the stack). Sets up the "local data" fields. This may involve pushing

actual values if the locals are initialized as part of their declarations, or it may just involve subtracting their total size from the SP.

Called Method Ending Restores the values of any saved registers. Loads the return address into register RA

(from the AR). Restores the old stack pointer (SP = FP). Restores the old frame pointer (FP = saved

FP, i.e., the value in the control-link field). Return (jump to the address in register RA).

Calling Method Ends call

Copy values out of Return Value field(if there are any)

Examplevoid f2(int y) {

f1(y);}

void f1(int x) {if (x > 0) f2(x-1);

}

main() {int a = 1;f(1);

}

See work on board:Keep track of FP, SP,CL field, and parameters andLocal variables

You Try ItAssume that stack allocation is used, and that each activation record

contains local variables, parameters, and a control link. Trace the execution of the following code by filling in the appropriate fields of the activation records (recall that dynamically allocated storage is stored in the heap, not on the stack).

void init(int[] A, int len) { for (int k=1; k<len; k++) { A[k] = k; } }

void main() { int[] x = new int[3]; init(x, 3); }