Presentation is loading. Please wait.

Presentation is loading. Please wait.

Types and Programming Languages Lecture 12 Simon Gay Department of Computing Science University of Glasgow 2006/07.

Similar presentations


Presentation on theme: "Types and Programming Languages Lecture 12 Simon Gay Department of Computing Science University of Glasgow 2006/07."— Presentation transcript:

1 Types and Programming Languages Lecture 12 Simon Gay Department of Computing Science University of Glasgow 2006/07

2 Types and Programming Languages Lecture 12 - Simon Gay2 Type Safety: Unique Use In order to prove that every value is used exactly once, we need to define an alternative operational semantics which allows us to see values being “consumed”. The idea is to explicitly represent every value as being stored in memory and accessed by a pointer. Then we can define reductions on Store, Term configurations so that every value is removed from the store when it is first used. Then we will prove that when executing a well-typed term, we never get a dangling pointer, and that at the end of execution, there is nothing left in the store except the final value. The system will look like what we would get in lambda calculus with references, if we put ref around every value.

3 2006/07Types and Programming Languages Lecture 12 - Simon Gay3 Linear Lambda Calculus: Syntax v ::= integer literal | true | false | x:T.e | m (not top-level syntax) e ::= v | x | e + e | e == e | e & e | if e then e else e | ee The same as before, plus store locations (pointers) m,n,… T ::= int | bool | T  T Store S ::= m=v,…

4 2006/07Types and Programming Languages Lecture 12 - Simon Gay4 Linear Lambda Calculus: Semantics First define removal of a location from the store: (S, m=v, S’) – m = S,S’ Now define reductions of the form S, e  S’, e’ Evaluating a value creates a store location and returns it: S, true  S+[m=true], m S, false  S+[m=false], m S, v  S+[m=v], m S, x:T.e  S+[m= x:T.e], m In each case, m is a fresh location. v is a integer literal

5 2006/07Types and Programming Languages Lecture 12 - Simon Gay5 Linear Lambda Calculus: Semantics Next we define reductions which consume values. m,n different

6 2006/07Types and Programming Languages Lecture 12 - Simon Gay6 Linear Lambda Calculus: Semantics Finally we define reductions within expressions, as usual. Similarly for the other operators.

7 2006/07Types and Programming Languages Lecture 12 - Simon Gay7 Example , ( x:int. x+1)2 m = x:int. x+1, m 2 (m = x:int. x+1, n = 2), m n n = 2, n+1 (n = 2, p = 1), n+p q = 3, q FINAL RESULT

8 2006/07Types and Programming Languages Lecture 12 - Simon Gay8 Example , ( x:int. (x+1)+x)2 m = x:int. (x+1)+x, m 2 (m = x:int. (x+1)+x, n = 2), m n n = 2, (n+1)+n (n = 2, p = 1), (n+p)+n q = 3, q+n STUCK: n is a “dangling pointer”

9 2006/07Types and Programming Languages Lecture 12 - Simon Gay9 Exercise We now have two different semantics for (essentially) the same language: lambda calculus. The original semantics is based on reductions of expressions. The new semantics uses a store (and destroys values after their first use). Try to prove the following theorem, relating the semantics: If , e  * S,m=v, m in the linear lambda calculus semantics, then e  * v in the standard lambda calculus semantics. Why don’t we expect the converse to be true?

10 2006/07Types and Programming Languages Lecture 12 - Simon Gay10 Proving Type Safety: Unique Use Just as in the case of lambda calculus with references, we need the idea of a store typing , so that we can give a type to the expression m (store location). The store typing must be treated in the same way as the environment , so that in a typing judgement  |   e:T the  and  describe exactly the variables and locations used by e.

11 2006/07Types and Programming Languages Lecture 12 - Simon Gay11 Linear Lambda Calculus with Store Typings  |   true : bool  |   false : bool  |   v : intif v is an integer literal (LS-Plus) (LS-If) (LS-Abs) (LS-App) (LS-Var) x : T |   x : T (LS-Loc)  | m:T  m : T similarly &, ==

12 2006/07Types and Programming Languages Lecture 12 - Simon Gay12 Well-Typed Stores Just as we saw for references, we need the idea of a well-typed store. We write  S ::  and define it by the following rules:   ::  This is rather subtle. The store typing  describes the store locations that are available for use, i.e. not already used within other parts of the store. Examples:  m=2, n= x:int. x+m :: n:int  int  m=2, n=true :: m:int, n:bool Empty Next

13 2006/07Types and Programming Languages Lecture 12 - Simon Gay13 Well-Typed Stores We will need the following fact about well-typed stores. Lemma: If  S,m=v :: ,m:T and  |  ’  v : T then  S :: ,  ’ This might seem trivial, but the effect is that we can use rule Next (previous slide) in reverse even when m was not the last location to be added. It can be proved (exercise) by induction on the derivation of  S,m=v :: ,m:T. The base case is trivial and the inductive case breaks into two sub-cases, depending on whether or not m is the last location added.

14 2006/07Types and Programming Languages Lecture 12 - Simon Gay14 Substitution Lemma As usual we need a substitution lemma. Because of the way the operational semantics is defined, we only need to consider substituting a store location for a variable. Lemma: If , x:T |   e:U then  | ,n:T  e[n/x] : U Proof (outline): e cannot be a boolean or integer literal or a store location (why?) If e is a variable then it must be x (why?) and  and  must be  (why?) so the desired conclusion is  | n:T  n:T which follows from rule LS-Loc.

15 2006/07Types and Programming Languages Lecture 12 - Simon Gay15 Substitution Lemma Proof (continued): The other cases use the induction hypothesis in a similar way to the Substitution Lemma for simply typed lambda calculus. The difference is that the substitution only goes into one part of the expression. If e is t+u then we have where and we consider two cases, depending on whether x is used in e or in f.

16 2006/07Types and Programming Languages Lecture 12 - Simon Gay16 Type Preservation Theorem: If  |   e:T and  S ::  and S, e  S’, e’ then there exists  ’ such that  |  ’  e’:T and  S’ ::  ’. Proof: By induction on the derivation of S, e  S’, e’. 1. S, true  S+[m=true], m We have  |   true:bool so  =  (why?) and S=  (why?). Taking  ’ = m:bool gives  |  ’  m:bool and  S’ ::  ’ as required. Therefore S’ = (m=true). The cases of the other values are similar. For y:U.e we can’t say that  =  and S=  because e may use locations.

17 2006/07Types and Programming Languages Lecture 12 - Simon Gay17 Type Preservation 2. S, if m then e else e’  S-m, e because S(m)=true. We have therefore Taking we have  |  ’  e:T and we just need  S-m ::  ’ which follows from the Lemma on slide 13.

18 2006/07Types and Programming Languages Lecture 12 - Simon Gay18 Type Preservation 3. S, mn  S-m, e[n/x] because S(m)= x:T.e. We have and  S :: m:T —o U, n:T By the lemma on slide 13,  S-m :: ,n:T where  |   x:T.e : T  U This typing is justified by x:T |   e : U from which the Substitution Lemma gives  | ,n:T  e[n/x] : U as required.

19 2006/07Types and Programming Languages Lecture 12 - Simon Gay19 Type Preservation 4. The remaining cases, such as follow from straightforward uses of the induction hypothesis.

20 2006/07Types and Programming Languages Lecture 12 - Simon Gay20 Progress Finally we can also prove Progress Theorem If  S ::  and  |   e:T then either S, e  S’, e’ (for some S’) or e is a store location. very easily, by checking that for every potentially reducing term (e.g. if m then t else e), the typing and the store typing mean that one of the reduction rules applies.

21 2006/07Types and Programming Languages Lecture 12 - Simon Gay21 The Final Value Combining Progress and Preservation, we see that reduction of a typed term in a typed store terminates with S, m and one of the following cases applies: 1.S is m=true 2.S is m=false 3.S is m=v for some integer literal v 4.S(m) = x:T.e and  S-m ::  and x:T |   e : U i.e. S contains just m and the locations referred to by e Exercise: work out the complete reduction sequence for ( x:int. y:int.x+y)3


Download ppt "Types and Programming Languages Lecture 12 Simon Gay Department of Computing Science University of Glasgow 2006/07."

Similar presentations


Ads by Google