Presentation is loading. Please wait.

Presentation is loading. Please wait.

PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 1 PZ09B - Parameter transmission Programming Language Design.

Similar presentations


Presentation on theme: "PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 1 PZ09B - Parameter transmission Programming Language Design."— Presentation transcript:

1 PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 1 PZ09B - Parameter transmission Programming Language Design and Implementation (4th Edition) by T. Pratt and M. Zelkowitz Prentice Hall, 2001 Section 9.3

2 PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 2 Parameter passing Parameter: A variable in a procedure that represents some other data from the procedure that invoked the given procedure. Parameter transmission: How that information is passed to the procedure. The parameter is also called the formal argument.The data from the invoking procedure is called the actual argument or sometimes just the argument. Usual syntax: Actual arguments: call P(A, B+2, 27+3) Parameters: Procedure P(X, Y, Z) What is connection between the parameters and the arguments? Call by value Call by reference Call by name Call by result (or value-result)

3 PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 3 Language dependent Difference languages have different mechanisms: ALGOL - name, value Pascal - value, reference C - value (BUT pointers give us reference Constant tension between desire for efficiency and semantic correctness in defining parameter transmission.

4 PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 4 Call by Value The formal parameter acts as a local variable that is initialized with the value of the actual parameter. This method is most common and considered most safe (no side effects). C has call by value. int total(int val) { int sum = 0; while (val > 0) { sum = sum + val; val--; } return sum; } \\\\ int x,y=10; x = total(y);// value of y is not changed

5 PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 5 Call by value Pass the R-value of the argument for the parameter. Invocation: P(A, B+2, 27+3) Implementation: Temp1 = B+2 Temp2 = 27+3 jump to subroutine P R-value of A R-value of Temp1 R-value of Temp2 In procedure activation record, parameter X is a local variable whose R-value is the R-value of the argument.

6 PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 6 Call by Reference The problem with call by value is that the subprogram can affect only one value for the calling program. Also, if an array is passed as a parameter (because we want to operate on some of the values) the entire array is copied to the subprogram parameter area at run time (time consuming if done extensively and uses space on the stack). Therefore, in many languages, call by reference is provided as an option. In call by reference, the address of the actual parameter is passed to the subprogram.

7 PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 7 Call by reference Pass the L-value of the argument for the parameter. Invocation: P(A, B+2, 27+3) Implementation: Temp1 = B+2 Temp2 = 27+3 jump to subroutine P L-value of A L-value of Temp1 L-value of Temp2 This is the most common parameter transmission mechanism. In the procedure activation record, parameter X is a local variable whose R-value is the L-value of the argument.

8 PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 8 Call by reference in C C only has call by value, BUT pointer variables allow for simulating call by reference: P(i, j)  passes i and j by value. P(&i, &j)  passes L-values of i and j. P(*x, *y) {*x = *y + 1;}  arguments are addresses (pointers) C++: default is call by value except for arrays which are call by reference

9 PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 9 Call by Value-Result Call by result (or value-result): Call by value, AND pass back the final value to argument upon return. Parameter is a local value in procedure. Similar to call by reference, except for aliasing.

10 PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 10 In-out semantics Parameters in Ada are based upon use (semantics), not implementation: in - argument value will be used in procedure. out - parameter value will be used in calling program. in out - both uses of arguments and parameters P(X in integer; Y out integer; Z in out integer); begin... end;

11 PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 11 Call by Value-Result Call by value-result and call by reference seem to have the same result (except concurrency and aliasing). However, call by value-result has several advantages over call by reference. Within the subprogram, all references are to local variables, which results in faster execution. If there are concurrent threads, call by value-result will prevent other threads from seeing intermediate results. In Java, parameters are always call by value, objects are accessed by reference, so the effect of passing an object is call by reference.

12 PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 12 Call by Name Some languages use call by name which substitutes the text of the actual parameter for each occurrence of the formal parameter. In call by reference, the address is calculated once at the point of the call and in call by value, the value is determined once at the point of the subprogram call. In call by name, the actual parameter is unevaluated and is recalculated each time the formal parameter is used during the execution of the subprogram. Most of the time, this has the same effect as call by reference. The exception is when subscripting and aliasing are used. Fun1(A, B+3, Fun2(A))

13 PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 13 Call by name Substitute argument for parameter at each occurrence of parameter: Invocation: P(A, B+2, 27+3) Definition: procedure P(X,Y,Z) {int I; I=7; X = I + (7/Y)*Z;} Meaning: P(X,Y,Z) {int I; I=7; A=I+(7/(B+2))*(27+3);} This is a true macro expansion. Simple semantics, BUT: 1. Implementation. How to do it? 2. Aliases. What if statement of P were: I = A? 3. Expressions versus statements: If we had D=P(1,2,3) and a return(42) in P, what does semantics mean? 4. Error conditions: P(A+B, B+2, 27+3)

14 PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 14 Examples of Call by Name 1. P(x,y) {x = x + 1; y=x;} Seems simple enough … X=1; Y = 2;P(X,Y); write(X)  means X = X+1;Y=Xwrite(X)  prints 2 2. int A[10]; for(I=0; I<10; I++) {A[I]=I;}; I=J=1; P(J,A[I])  J = J+1; A[I]=J  A[1], J set to 2 3. But: What is: P(I,A[I])? P(A[I],I)  I=I+1; A[I] = I  I=1+1; A[I] = I  I=2; A[2] = 2; 4. Write a program to exchange values of X and Y: (swap(X,Y)) Usual way: swap(x,y) {t=x; x=y; y=t;} Cannot do it with call by name. Cannot handle both of following: swap(I, A[I]) swap(A[I],I) One of these must fail.

15 PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 15 Call by Name Because of the extra calculations that must be done at run time, this method is not used very much, however, it is used in the C,C++ preprocessor for macro expansion. Call by name (macro style) 1.Actual parameters are textually substituted for the formals. 2.The resulting procedure is textually substituted for the call. #define MAX(a,b) ( (a) > (b) ? (a) : (b) ) // j = MAX(x,y); // int, float, etc.

16 PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 16 Call by Name #define MAX(a,b) ( (a) > (b) ? (a) : (b) ) // Be careful to parenthesize all parameters in the definition. j = MAX(x = x + 5, y+5); Beware of strange side effects: int a = 1; b = 0; MAX(a++, b);// a is incremented twice MAX(a++, b+10);// a is incremented once

17 PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 17 Example of parameter passing Main{ int A,B,C,D,M[3]={0,0,0}; A = 1; B = 5; C = 8; D = 9; P(A, B, C, D, M[A]); write(A, B, C, D,M[0],M[1],M[2]); P(U, V, W, X) {V = U+A; W = A+B; A = A+1; X = A+2;Y = 5; write(U, V, W, X, Y)} Fill in table assume parameters are of the given type: U V W X Y A B C D M[0] M[1] M[2] Call by name Call by reference Call by value Call by result When do call by name and call by reference differ? When L-value can change between parameter references. E.g., P(I, A[I])


Download ppt "PZ09B Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, 2000 1 PZ09B - Parameter transmission Programming Language Design."

Similar presentations


Ads by Google