what are we doing
play

What Are We Doing? Covered a lot of ground! Easy to lose sight of - PowerPoint PPT Presentation

What Are We Doing? Covered a lot of ground! Easy to lose sight of the big picture. CSE 505: Programming Languages Lecture 10 Types Zach Tatlock Fall 2013 Zach Tatlock CSE 505 Fall 2013, Lecture 10 2 The Big Picture Types Building


  1. What Are We Doing? Covered a lot of ground! Easy to lose sight of the big picture. CSE 505: Programming Languages Lecture 10 — Types Zach Tatlock Fall 2013 Zach Tatlock CSE 505 Fall 2013, Lecture 10 2 The Big Picture Types Building Sweet Skills: Types are a major new topic worthy of a lifetime’s study ◮ Defining languages and semantics ◮ Continue to use (CBV) Lambda Caluclus as our core model ◮ Grammars and inductive definitions ◮ But will soon enrich with other common primitives ◮ Abstract vs. concrete syntax ◮ Formal proofs and structural induction Today: ◮ Invariants, determinism, equivalence ◮ Motivation for type systems ◮ Lambda calculus ◮ What a type system is designed to do and not do ◮ Small, simple model of computation ◮ Vocab: definition of stuckness, soundness, completeness, etc. ◮ The Simply-Typed Lambda Calculus Onward and Upward! ◮ A basic and natural type system ◮ Today: TYPES! ◮ Starting point for more expressiveness later ◮ What do they do? ◮ Why do we want them? ◮ How do we formalize them? ◮ What makes a good type system? Zach Tatlock CSE 505 Fall 2013, Lecture 10 3 Zach Tatlock CSE 505 Fall 2013, Lecture 10 4

  2. Quick Review: L-to-R CBV Lambda Calculus Introduction to Types Aren’t more powerful PLs are always better? e ::= λx. e | x | e e ◮ Turing Complete so we can do anything ( λ -Calculus / x86) v ::= λx. e ◮ Super flexible (e.g., higer order functions) Implicit systematic renaming of bound variables ◮ α -equivalence on expressions (“the same term”) ◮ Conveniences to keep programs short (concision is king!) e → e ′ If so, types are taking us in the wrong direction! e 1 → e ′ e 2 → e ′ 1 2 ◮ Type systems restrict which programs we can write :( e 1 e 2 → e ′ v e 2 → v e ′ ( λx. e ) v → e [ v/x ] 1 e 2 2 ◮ If types are any good, must help in some other PL dimension... e 1 [ e 2 /x ] = e 3 e 1 [ e/x ] = e ′ e 2 [ e/x ] = e ′ y � = x 1 2 ( e 1 e 2 )[ e/x ] = e ′ 1 e ′ x [ e/x ] = e y [ e/x ] = y 2 e 1 [ e/x ] = e ′ y � = x y �∈ F V ( e ) 1 ( λy. e 1 )[ e/x ] = λy. e ′ 1 Zach Tatlock CSE 505 Fall 2013, Lecture 10 5 Zach Tatlock CSE 505 Fall 2013, Lecture 10 6 Why types? Why types? Let’s think about it... This is a game called “read the professor’s mind.” Zach Tatlock CSE 505 Fall 2013, Lecture 10 7 Zach Tatlock CSE 505 Fall 2013, Lecture 10 8

  3. Why types? (Part 1/ ∞ ) Why types? (Part 2/ ∞ ) 1. Catch “stupid” mistakes early, even before testing! 2. (Safety) Prevent getting stuck (e.g., x v ) ◮ Example: “if” applied to “mkpair” ◮ Ensure execution never gets to a “meaningless” state ◮ Stupid, too-clever occasionally indistinguishable (ptr xor) ◮ But “meaningless” depends on the semantics ◮ PLs typically have some type errors, others run-time errors You’re gonna do it anyway... As our system has grown, a lot of the logic in our Ruby system sort of replicates a type system... I think it may just be a property of large systems in dynamic languages, that eventually you end up rewriting your own type system, and you sort of do it badly. Youre checking for null values all over the place. Theres lots of calls to Rubys kind of? method, which asks, Is this a kind of User object? Because thats what were expecting. If we dont get that, this is going to explode. It is a shame to have to write all that when there is a solution that has existed in the world of programming languages for decades now. – Alex Payne (Twitter Dude) Zach Tatlock CSE 505 Fall 2013, Lecture 10 9 Zach Tatlock CSE 505 Fall 2013, Lecture 10 10 Why types? (Part 3/ ∞ ) What is a type system? 3. Help our compiler bros out a bit ◮ “filter” between AST and compiler/interpreter ◮ Strengthen compiler assumptions, help optimizer ◮ Don’t have to check for impossible states ◮ Orthogonal to safety (e.g. C/C++) 4. Enforce encapsulation (an abstract type ) ◮ Clients can’t break invariants ◮ Hide implementation (now can change list/pair) ◮ Requires safety, meaning no “stuck” states that corrupt run-time (e.g., C/C++) ◮ Can enforce encapsulation without static types, but types are a particularly nice way 5. Syntactic overloading ◮ Have symbol lookup depend on operands’ types ◮ Only modestly interesting semantically ◮ Late binding (lookup via run-time types) more interesting Zach Tatlock CSE 505 Fall 2013, Lecture 10 11 Zach Tatlock CSE 505 Fall 2013, Lecture 10 12

  4. What isn’t a type system? What is a type system? Er, uh, you know it when you see it. Some clues: ◮ A decidable (?) judgment for classifying programs ◮ E.g., e 1 + e 2 has type int if e 1 , e 2 have type int (else no type ) ◮ A sound (?) abstraction of computation ◮ E.g., if e 1 + e 2 has type int, then evaluation produces an int (with caveats!)) ◮ Fairly syntax directed ◮ Non-example (?): e terminates within 100 steps ◮ Particularly fuzzy distinctions with abstract interpretation ◮ Often a more natural framework for flow-sensitive properties ◮ Types often more natural for higher-order programs Appel’s Axiom: This is a CS-centric, PL-centric view. The difference between a program analysis and a type ◮ Foundational type theory has more rigorous answers :) system is that when a type system rejects a program it’s ◮ Type systems have a long history... the programmer’s fault. Zach Tatlock CSE 505 Fall 2013, Lecture 10 13 Zach Tatlock CSE 505 Fall 2013, Lecture 10 14 Roots in Paradox Adding constants Let R = { x | x �∈ x } , then Enrich the Lambda Calculus with integer constants: R ∈ R ⇐ ⇒ R �∈ R ◮ Not stricly necessary, but makes types seem more natural The barber is a man in a town who e ::= λx. e | x | e e | c shaves exactly those men who do not v ::= λx. e | c shave themselves. All men in this town are clean shaven. No new operational-semantics rules since constants are values Who shaves the barber? We could add + and other primitives ◮ Then we would need new rules (e.g., 3 small-step for + ) And thus type theory was born ... ◮ Alternately, parameterize “programs” by primitives: λ plus . λtimes. ... e ◮ Like Pervasives in OCaml ◮ A great way to keep language definitions small Zach Tatlock CSE 505 Fall 2013, Lecture 10 15 Zach Tatlock CSE 505 Fall 2013, Lecture 10 16

  5. Stuck What’s stuck? Key issue: can a program “get stuck” (reach a “bad” state)? Given our language, what are the set of stuck expressions? ◮ Note: Explicitly defining the stuck states is unusual ◮ Definition: e is stuck if e is not a value and there is no e ′ e ::= λx. e | x | e e | c such that e → e ′ v ::= λx. e | c ◮ Definition: e can get stuck if there exists an e ′ such that e 1 → e ′ e 2 → e ′ e → ∗ e ′ and e ′ is stuck 1 2 e 1 e 2 → e ′ v e 2 → v e ′ ( λx. e ) v → e [ v/x ] 1 e 2 ◮ In a deterministic language, e “gets stuck” 2 (Hint: The full set is recursively defined.) Most people don’t appreciate that stuckness depends on the S ::= x | c v | S e | v S operational semantics ◮ Inherent given the definitions above Note: Can have fewer stuck states if we add more rules ◮ Example: Javascript ◮ Example: c v → v ◮ In unsafe languages, stuck states can set the computer on fire Zach Tatlock CSE 505 Fall 2013, Lecture 10 17 Zach Tatlock CSE 505 Fall 2013, Lecture 10 18 Soundness and Completeness Wrong Attempt A type system is a judgment for classifying programs ◮ “accepts” a program if some complete derivation gives it a τ ::= int | fn type, else “rejects” ⊢ e : τ A sound type system never accepts a program that can get stuck ⊢ e 1 : fn ⊢ e 2 : int ◮ No false negatives ⊢ λx. e : fn ⊢ c : int ⊢ e 1 e 2 : int A complete type system never rejects a program that can’t get stuck ◮ No false positives 1. NO: can get stuck, e.g., ( λx. y ) 3 2. NO: too restrictive, e.g., ( λx. x 3) ( λy. y ) It is typically undecidable whether a stuck state can be reachable ◮ Corollary: If we want an algorithm for deciding if a type 3. NO: types not preserved, e.g., ( λx. λy. y ) 3 system accepts a program, then the type system cannot be sound and complete ◮ We’ll choose soundness, try to reduce false positives in practice Zach Tatlock CSE 505 Fall 2013, Lecture 10 19 Zach Tatlock CSE 505 Fall 2013, Lecture 10 20 Note soundness/completeness depends on the type-system

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend