Review. CS152: Programming Languages. Lecture 11 STLC Extensions and Related Topics. Let bindings (CBV) Adding Stuff. Booleans and Conditionals

Similar documents
CS152: Programming Languages. Lecture 11 STLC Extensions and Related Topics. Dan Grossman Spring 2011

Goal. CS152: Programming Languages. Lecture 15 Parametric Polymorphism. What the Library Likes. What The Client Likes. Start simpler.

CS-XXX: Graduate Programming Languages. Lecture 9 Simply Typed Lambda Calculus. Dan Grossman 2012

CS-XXX: Graduate Programming Languages. Lecture 17 Recursive Types. Dan Grossman 2012

CSE-505: Programming Languages. Lecture 20.5 Recursive Types. Zach Tatlock 2016

CSE 505: Concepts of Programming Languages

CS152: Programming Languages. Lecture 7 Lambda Calculus. Dan Grossman Spring 2011

Programming Languages Lecture 14: Sum, Product, Recursive Types

1 Introduction. 3 Syntax

Whereweare. CS-XXX: Graduate Programming Languages. Lecture 7 Lambda Calculus. Adding data structures. Data + Code. What about functions

CS 6110 S11 Lecture 25 Typed λ-calculus 6 April 2011

CS 4110 Programming Languages & Logics. Lecture 17 Programming in the λ-calculus

Programming Language Features. CMSC 330: Organization of Programming Languages. Turing Completeness. Turing Machine.

CMSC 330: Organization of Programming Languages

Harvard School of Engineering and Applied Sciences CS 152: Programming Languages

Tradeoffs. CSE 505: Programming Languages. Lecture 15 Subtyping. Where shall we add useful completeness? Where shall we add completeness?

Polymorphic lambda calculus Princ. of Progr. Languages (and Extended ) The University of Birmingham. c Uday Reddy

CSE 505, Fall 2008, Final Examination 11 December Please do not turn the page until everyone is ready.

λ calculus is inconsistent

CMSC 336: Type Systems for Programming Languages Lecture 5: Simply Typed Lambda Calculus Acar & Ahmed January 24, 2008

Lecture 3: Recursion; Structural Induction

CSE 413 Languages & Implementation. Hal Perkins Winter 2019 Structs, Implementing Languages (credits: Dan Grossman, CSE 341)

CSE 505: Programming Languages. Lecture 10 Types. Zach Tatlock Winter 2015

We defined congruence rules that determine the order of evaluation, using the following evaluation

Harvard School of Engineering and Applied Sciences Computer Science 152

COMP 4161 NICTA Advanced Course. Advanced Topics in Software Verification. Toby Murray, June Andronick, Gerwin Klein

Types and Programming Languages. Lecture 5. Extensions of simple types

Assistant for Language Theory. SASyLF: An Educational Proof. Corporation. Microsoft. Key Shin. Workshop on Mechanizing Metatheory

Introduction to OCaml

CS4215 Programming Language Implementation. Martin Henz

CSE 505, Fall 2006, Final Examination 11 December Please do not turn the page until everyone is ready.

CSCI-GA Scripting Languages

To figure this out we need a more precise understanding of how ML works

Types. Type checking. Why Do We Need Type Systems? Types and Operations. What is a type? Consensus

CMSC 330: Organization of Programming Languages

More Lambda Calculus and Intro to Type Systems

CSE 505, Fall 2009, Final Examination 14 December Please do not turn the page until everyone is ready.

Programming Languages

The Substitution Model. Nate Foster Spring 2018

The Substitution Model

Harvard School of Engineering and Applied Sciences CS 152: Programming Languages. Lambda calculus

Dynamic Types , Spring March 21, 2017

5. Introduction to the Lambda Calculus. Oscar Nierstrasz

Harvard School of Engineering and Applied Sciences CS 152: Programming Languages

CSE 505, Fall 2008, Final Examination 11 December Please do not turn the page until everyone is ready.

CS 6110 S14 Lecture 1 Introduction 24 January 2014

Lecture Notes on Program Equivalence

CS 4110 Programming Languages & Logics. Lecture 28 Recursive Types

CMSC 330: Organization of Programming Languages

Lecture Notes on Data Representation

Featherweight Java (FJ)

Programming Languages Fall 2014

Lecture Notes on Aggregate Data Structures

Don t Believe the Hype. CS152: Programming Languages. Lecture 21 Object-Oriented Programming. Class-based OOP. So what is OOP?

CS131 Typed Lambda Calculus Worksheet Due Thursday, April 19th

Subsumption. Principle of safe substitution

Symmetry in Type Theory

CSE 341: Programming Languages

CS558 Programming Languages

Type Inference Systems. Type Judgments. Deriving a Type Judgment. Deriving a Judgment. Hypothetical Type Judgments CS412/CS413

Concepts of programming languages

Gradual Typing for Functional Languages. Jeremy Siek and Walid Taha (presented by Lindsey Kuper)

Second-Order Type Systems

Typing Control. Chapter Conditionals

The Untyped Lambda Calculus

Programming Languages Lecture 15: Recursive Types & Subtyping

9/23/2014. Why study? Lambda calculus. Church Rosser theorem Completeness of Lambda Calculus: Turing Complete

CSE505, Fall 2012, Midterm Examination October 30, 2012

Type assignment for intersections and unions in call-by-value languages

Lecture 9: Typed Lambda Calculus

CIS 500 Software Foundations Fall September 25

CSE413: Programming Languages and Implementation Racket structs Implementing languages with interpreters Implementing closures

CS152: Programming Languages. Lecture 24 Bounded Polymorphism; Classless OOP. Dan Grossman Spring 2011

CSE341: Programming Languages Lecture 17 Implementing Languages Including Closures. Dan Grossman Autumn 2018

Agenda. CS301 Session 11. Common type constructors. Things we could add to Impcore. Discussion: midterm exam - take-home or inclass?

CS 242. Fundamentals. Reading: See last slide

CS558 Programming Languages

(Refer Slide Time: 4:00)

CS 11 Haskell track: lecture 1

The Untyped Lambda Calculus

Lecture 13: Subtyping

Lambda Calculus. Type Systems, Lectures 3. Jevgeni Kabanov Tartu,

COS 320. Compiling Techniques

Typed Lambda Calculus and Exception Handling

The story so far. Elements of Programming Languages. Pairs in various languages. Pairs

CIS 500 Software Foundations Fall October 2

CMSC 330: Organization of Programming Languages. OCaml Expressions and Functions

CIS 500 Software Foundations Fall December 6

Administrivia. Existential Types. CIS 500 Software Foundations Fall December 6. Administrivia. Motivation. Motivation

The Lambda Calculus. 27 September. Fall Software Foundations CIS 500. The lambda-calculus. Announcements

CS-XXX: Graduate Programming Languages. Lecture 22 Class-Based Object-Oriented Programming. Dan Grossman 2012

Fundamentals and lambda calculus

SOFTWARE ENGINEERING DESIGN I

Part III. Chapter 15: Subtyping

Lecture 9: More Lambda Calculus / Types

- M ::= v (M M) λv. M - Impure versions add constants, but not necessary! - Turing-complete. - true = λ u. λ v. u. - false = λ u. λ v.

Denotational Semantics. Domain Theory

Recitation 8: Dynamic and Unityped Languages : Foundations of Programming Languages

Lecture 2: SML Basics

The Lambda Calculus. notes by Don Blaheta. October 12, A little bondage is always a good thing. sk

Transcription:

Review CS152: Programming Languages Lecture 11 STLC Extensions and Related Topics e ::= λx. e x ee c v ::= λx. e c (λx. e) v e[v/x] e 1 e 2 e 1 e 2 τ ::= int τ τ Γ ::= Γ,x : τ e 2 e 2 ve 2 ve 2 e[e /x]: capture-avoiding substitution of e for free x in e Dan Grossman Spring 2011 Γ c : int Γ,x : τ 1 e : τ 2 Γ x :Γ(x) Γ λx. e : τ 1 τ 2 Γ e 1 : τ 2 τ 1 Γ e 2 : τ 2 Γ e 1 e 2 : τ 1 Preservation: If e : τ and,then e : τ. Progress: If e : τ,thene is a value or e such that. Dan Grossman CS152 Spring 2011, Lecture 11 2 Adding Stuff Time to use STLC as a foundation for understanding other common language constructs We will add things via a principled methodology thanks to a proper education Extend the syntax Extend the operational semantics Derived forms (syntactic sugar), or Direct semantics Extend the type system Extend soundness proof (new stuck states, proof cases) In fact, extensions that add new types have even more structure Let bindings (CBV) e ::=... let x = e 1 in e 2 let x = e 1 in e 2 let x = e 1 in e 2 let x = v in e e[v/x] Γ e 1 : τ Γ,x : τ e 2 : τ Γ let x = e 1 in e 2 : τ (Also need to extend definition of substitution...) Progress: If e is a let, 1 of the 2 new rules apply (using induction) Preservation: Uses Substitution Lemma Substitution Lemma: Uses Weakening and Exchange Dan Grossman CS152 Spring 2011, Lecture 11 3 Dan Grossman CS152 Spring 2011, Lecture 11 4 Derived forms let seems just like λ, so can make it a derived form let x = e 1 in e 2 a macro / desugars to (λx. e 2 ) e 1 A derived form (Harder if λ needs explicit type) Or just define the semantics to replace let with λ: Booleans and Conditionals e ::=... true false if e 1 e 2 e 3 v ::=... true false τ ::=... bool if e 1 e 2 e 3 if e 1 e 2 e 3 if true e 2 e 3 e 2 if false e 2 e 3 e 3 let x = e 1 in e 2 (λx. e 2 ) e 1 These 3 semantics are different in the state-sequence sense (e 1 e 2... e n ) But (totally) equivalent and you could prove it (not hard). Note: ML type-checks let and λ differently (later topic) Note: Don t desugar early if it hurts error messages! Dan Grossman CS152 Spring 2011, Lecture 11 5 Γ e 1 : bool Γ e 2 : τ Γ e 3 : τ Γ if e 1 e 2 e 3 : τ Γ true : bool Γ false : bool Also extend definition of substitution (will stop writing that)... Notes: CBN, new Canonical Forms case, all lemma cases easy Dan Grossman CS152 Spring 2011, Lecture 11 6

Pairs (CBV, left-right) Pairs continued e ::=... (e, e) e.1 e.2 v ::=... (v, v) τ ::=... τ τ Γ e 1 : τ 1 Γ e 2 : τ 2 Γ (e 1,e 2 ):τ 1 τ 2 (e 1,e 2 ) (e 1,e 2) e.1 e.1 e 2 e 2 (v 1,e 2 ) (v 1,e 2 ) e.2 e.2 Γ e : τ 1 τ 2 Γ e.1 :τ 1 Γ e : τ 1 τ 2 Γ e.2 :τ 2 Canonical Forms: If v : τ 1 τ 2,thenv has the form (v 1,v 2 ) Progress: New cases using Canonical Forms are v.1 and v.2 (v 1,v 2 ).1 v 1 (v 1,v 2 ).2 v 2 Small-step can be a pain Large-step needs only 3 rules Preservation: For primitive reductions, inversion gives the result directly Will learn more concise notation later (evaluation contexts) Dan Grossman CS152 Spring 2011, Lecture 11 7 Dan Grossman CS152 Spring 2011, Lecture 11 8 Records Records are like n-ary tuples except with named fields Field names are not variables; they do not α-convert e ::=... {l 1 = e 1 ;...; l n = e n } e.l v ::=... {l 1 = v 1 ;...; l n = v n } τ ::=... {l 1 : τ 1 ;...; l n : τ n } Records continued Should we be allowed to reorder fields? {l 1 = 42; l 2 = true} : {l 2 : bool; l 1 : int}?? Really a question about, when are two types equal? e i e i {l 1 =v 1,...,l i 1 =v i 1,l i =e i,...,l n =e n } {l 1 =v 1,...,l i 1 =v i 1,l i =e i,...,l n=e n } 1 i n {l 1 = v 1,...,l n = v n }.l i v i e.l e.l Nothing wrong with this from a type-safety perspective, yetmany languages disallow yet Reasons: Implementation efficiency, type inference Return to this topic when we study subtyping Γ e 1 : τ 1... Γ e n : τ n labels distinct Γ {l 1 = e 1,...,l n = e n } : {l 1 : τ 1,...,l n : τ n } Γ e : {l 1 : τ 1,...,l n : τ n } 1 i n Γ e.l i : τ i Dan Grossman CS152 Spring 2011, Lecture 11 9 Dan Grossman CS152 Spring 2011, Lecture 11 10 Sums Sums syntax and overview What about ML-style datatypes: type t = A B of int C of int * t 1. Tagged variants (i.e., discriminated unions) 2. Recursive types 3. Type constructors (e.g., type a mylist =...) 4. Named types For now, just model (1) with (anonymous) sum types We ll do (2) in a couple weeks, (3) is straightforward, and (4) we ll discuss informally e ::=... A(e) B(e) match e with Ax. e Bx. e v ::=... A(v) B(v) τ ::=... τ 1 + τ 2 Only two constructors: A and B All values of any sum type built from these constructors So A(e) canhaveanysumtypeallowedbye s type No need to declare sum types in advance Like functions, will guess the type in our rules Dan Grossman CS152 Spring 2011, Lecture 11 11 Dan Grossman CS152 Spring 2011, Lecture 11 12

Sums operational semantics What is going on match A(v) with Ax. e 1 By. e 2 e 1 [v/x] match B(v) with Ax. e 1 By. e 2 e 2 [v/y] A(e) A(e ) B(e) B(e ) match e with Ax. e 1 By. e 2 match e with Ax. e 1 By. e 2 Feel free to think about tagged values in your head: A tagged value is a pair of: AtagA or B (or 0 or 1 if you prefer) The (underlying) value Amatch: Checks the tag Binds the variable to the (underlying) value This much is just like Caml in lecture 1 and related to homework 2 match has binding occurrences, just like pattern-matching (Definition of substitution must avoid capture, just like functions) Dan Grossman CS152 Spring 2011, Lecture 11 13 Dan Grossman CS152 Spring 2011, Lecture 11 14 Sums Typing Rules Inference version (not trivial to infer; can require annotations) Γ e : τ 1 Γ A(e) :τ 1 + τ 2 Γ e : τ 2 Γ B(e) :τ 1 + τ 2 Γ e : τ 1 + τ 2 Γ,x:τ 1 e 1 : τ Γ,y:τ 2 e 2 : τ Γ match e with Ax. e 1 By. e 2 : τ Key ideas: For constructor-uses, other side can be anything For match, both sides need same type Don t know which branch will be taken, just like an if. In fact, can drop explicit booleans and encode with sums: E.g., bool = int + int, true = A(0), false = B(0) Sums Type Safety Canonical Forms: If v : τ 1 + τ 2, then there exists a v 1 such that either v is A(v 1 ) and v 1 : τ 1 or v is B(v 1 ) and v 1 : τ 2 Progress for match v with Ax. e 1 By. e 2 follows, as usual, from Canonical Forms Preservation for match v with Ax. e 1 By. e 2 follows from the type of the underlying value and the Substitution Lemma The Substitution Lemma has new hard cases because we have new binding occurrences But that s all there is to it (plus lots of induction) Dan Grossman CS152 Spring 2011, Lecture 11 15 Dan Grossman CS152 Spring 2011, Lecture 11 16 What are sums for? Pairs, structs, records, aggregates are fundamental data-builders Sums are just as fundamental: this or that not both You have seen how Caml does sums (datatypes) Worth showing how C and Java do the same thing A primitive in one language is an idiom in another Sums in C type t = A of t1 B of t2 C of t3 match e with A x ->... One way in C: struct t { enum {A, B, C} tag; union {t1 a; t2 b; t3 c;} data; };... switch(e->tag){ case A: t1 x=e->data.a;... No static checking that tag is obeyed As fat as the fattest variant (avoidable with casts) Mutation costs us again! Dan Grossman CS152 Spring 2011, Lecture 11 17 Dan Grossman CS152 Spring 2011, Lecture 11 18

Sums in Java type t = A of t1 B of t2 C of t3 match e with A x ->... One way in Java (t4 is the match-expression s type): abstract class t {abstract t4 m();} class A extends t { t1 x; t4 m(){...}} class B extends t { t2 x; t4 m(){...}} class C extends t { t3 x; t4 m(){...}}... e.m()... A new method in t and subclasses for each match expression Supports extensibility via new variants (subclasses) instead of extensibility via new operations (match expressions) Pairs vs. Sums You need both in your language With only pairs, you clumsily use dummy values, waste space, and rely on unchecked tagging conventions Example: replace int +(int int) with int (int (int int)) Pairs and sums are logical duals (more on that later) To make a τ 1 τ 2 you need a τ 1 and a τ 2 To make a τ 1 + τ 2 youneedaτ 1 or a τ 2 Given a τ 1 τ 2, you can get a τ 1 or a τ 2 (or both; your choice ) Given a τ 1 + τ 2, you must be prepared for either a τ 1 or τ 2 (the value s choice ) Dan Grossman CS152 Spring 2011, Lecture 11 19 Dan Grossman CS152 Spring 2011, Lecture 11 20 Base Types and Primitives, in general What about floats, string,...? Could add them all or do something more general... Parameterize our language/semantics by a collection of base types (b 1,...,b n )andprimitives (p 1 : τ 1,...,p n : τ n ). Examples: concat : stringstringstring toint : floatint hello : string Foreachprimitive,assume if applied to values of the right types it produces a value of the right type Together the types and assumed steps tell us how to type-check and evaluate p i v 1...v n where p i is a primitive. We can prove soundness once and for all given the assumptions Dan Grossman CS152 Spring 2011, Lecture 11 21 Recursion We probably won t prove it, but every extension so far preserves termination A Turing-complete language needs some sort of loop, but our lambda-calculus encoding won t type-check, nor will any encoding of equal expressive power So instead add an explicit construct for recursion You might be thinking let rec fx = e, but we will do something more concise and general but less intuitive fix e fix e No new values and no new types e ::=... fix e fix λx. e e[fix λx. e/x] Dan Grossman CS152 Spring 2011, Lecture 11 22 Using fix To use fix like let rec, just pass it a two-argument function where the first argument is for recursion Not shown: fix and tuples can also encode mutual recursion Example: (fix λf. λn. if (n<1) 1 (n (f(n 1)))) 5 (λn. if (n<1) 1 (n ((fix λf. λn. if (n<1)1(n (f(n 1))))(n 1)))) 5 if (5<1) 1 (5 ((fix λf. λn. if (n<1)1(n (f(n 1))))(5 1)) 2 5 ((fix λf. λn. if (n<1)1(n (f(n 1))))(5 1)) 2 5 ((λn. if (n<1) 1 (n ((fix λf. λn. if (n<1)1(n (f(n 1))))(n 1)))) 4)... Why called fix? In math, a fix-point of a function g is an x such that g(x) =x. This makes sense only if g has type τ τ for some τ Aparticularg could have have 0, 1, 39, or infinity fix-points Examples for functions of type int int: λx. x +1has no fix-points λx. x 0 has one fix-point λx. absolute value(x) has an infinite number of fix-points λx. if (x <10 && x>0) x 0 has 10 fix-points Dan Grossman CS152 Spring 2011, Lecture 11 23 Dan Grossman CS152 Spring 2011, Lecture 11 24

Higher types At higher types like (int int) (int int), the notion of fix-point is exactly the same (but harder to think about) For what inputs f of type int int is g(f) =f Examples: λf. λx. (f x)+1has no fix-points λf. λx. (f x) 0 (or just λf. λx. 0) has 1 fix-point The function that always returns 0 In math, there is exactly one such function (cf. equivalence) λf. λx. absolute value(f x) has an infinite number of fix-points: Any function that never returns a negative result Back to factorial Now, what are the fix-points of λf. λx. if (x <1) 1 (x (f(x 1)))? It turns out there is exactly one (in math): the factorial function! And fix λf. λx. if (x <1) 1 (x (f(x 1))) behaves just like the factorial function That is, it behaves just like the fix-point of λf. λx. if (x <1) 1 (x (f(x 1))) In general, fix takes a function-taking-function and returns its fix-point (This isn t really important, but I like explaining terminology and showing that programming is deeply connected to mathematics) Dan Grossman CS152 Spring 2011, Lecture 11 25 Dan Grossman CS152 Spring 2011, Lecture 11 26 Typing fix Γ e : τ τ Γ fix e : τ Math explanation: If e is a function from τ to τ,thenfix e, the fixed-point of e, is some τ with the fixed-point property. So it s something with type τ. Operational explanation: fix λx. e becomes e [fix λx. e /x] The substitution means x and fix λx. e need the same type The result means e and fix λx. e need the same type Note: The τ in the typing rule is usually insantiated with a function type e.g., τ 1 τ 2,soe has type (τ 1 τ 2 ) (τ 1 τ 2 ) General approach We added let, booleans, pairs, records, sums, and fix let was syntactic sugar fix made us Turing-complete by baking in self-application The others added types Whenever we add a new form of type τ there are: Introduction forms (ways to make values of type τ ) Elimination forms (ways to use values of type τ ) What are these forms for functions? Pairs? Sums? When you add a new type, think what are the intro and elim forms? Note: Proving soundness is straightforward! Dan Grossman CS152 Spring 2011, Lecture 11 27 Dan Grossman CS152 Spring 2011, Lecture 11 28 Anonymity We added many forms of types, all unnamed a.k.a. structural. Many real PLs have (all or mostly) named types: Java, C, C++: all record types (or similar) have names Omitting them just means compiler makes up a name Caml sum types and record types have names A never-ending debate: Structual types allow more code reuse: good Named types allow less code reuse: good Structural types allow generic type-based code: good Named types let type-based code distinguish names: good The theory is often easier and simpler with structural types Dan Grossman CS152 Spring 2011, Lecture 11 29 Termination Surprising fact: If e : τ in STLC with all our additions except fix, then there exists a v such that e v That is, all programs terminate So termination is trivially decidable (the constant yes function), so our language is not Turing-complete The proof requires more advanced techniques than we have learned so far because the size of expressions and typing derivations does not decrease with each program step Might teach the proof in a future lecture, but more likely point you toward references if you re interested Non-proof: Recursion in λ calculus requires some sort of self-application Easy fact: For all Γ, x, andτ,wecannot derive Γ xx: τ Dan Grossman CS152 Spring 2011, Lecture 11 30