Programming Languages and Compilers (CS 421)

Slides:



Advertisements
Similar presentations
Compilers Course 379K, TTH 9:30-11:00 Instructor: Dr. Doron A. Peled Office Hours: Mon 11:00-12:00.
Advertisements

Programming Language Concepts
Catriel Beeri Pls/Winter 2004/5 type reconstruction 1 Type Reconstruction & Parametric Polymorphism  Introduction  Unification and type reconstruction.
Chapter 3 Program translation1 Chapt. 3 Language Translation Syntax and Semantics Translation phases Formal translation models.
UMBC Introduction to Compilers CMSC 431 Shon Vick 01/28/02.
2.2 A Simple Syntax-Directed Translator Syntax-Directed Translation 2.4 Parsing 2.5 A Translator for Simple Expressions 2.6 Lexical Analysis.
9/18/20151 Programming Languages and Compilers (CS 421) Elsa L Gunter 2112 SC, UIUC Based in part on slides by Mattox.
Chapter 1 Introduction Dr. Frank Lee. 1.1 Why Study Compiler? To write more efficient code in a high-level language To provide solid foundation in parsing.
10/3/20151 Programming Languages and Compilers (CS 421) Choonghwan Lee Based in part on slides by Mattox Beckman,
CS 326 Programming Languages, Concepts and Implementation Instructor: Mircea Nicolescu Lecture 2.
Chapter 6 Programming Languages (2) Introduction to CS 1 st Semester, 2015 Sanghyun Park.
10/25/20151 Programming Languages and Compilers (CS 421) Grigore Rosu 2110 SC, UIUC Slides by Elsa Gunter, based.
Introduction to Compiling
12/9/20151 Programming Languages and Compilers (CS 421) Elsa L Gunter 2112 SC, UIUC Based in part on slides by Mattox.
Compiler Design Introduction 1. 2 Course Outline Introduction to Compiling Lexical Analysis Syntax Analysis –Context Free Grammars –Top-Down Parsing –Bottom-Up.
10/16/081 Programming Languages and Compilers (CS 421) Elsa L Gunter 2112 SC, UIUC Based in part on slides by Mattox.
2/1/20161 Programming Languages and Compilers (CS 421) Grigore Rosu 2110 SC, UIUC Slides by Elsa Gunter, based in.
CS412/413 Introduction to Compilers Radu Rugina Lecture 13 : Static Semantics 18 Feb 02.
2/6/20161 Programming Languages and Compilers (CS 421) Elsa L Gunter 2112 SC, UIUC Based in part on slides by Mattox.
Compiler Construction CPCS302 Dr. Manal Abdulaziz.
Programming Language Concepts (CIS 635) Elsa L Gunter 4303 GITC NJIT,
Programming Language Concepts (CIS 635) Elsa L Gunter 4303 GITC NJIT,
Overview of Compilation Prepared by Manuel E. Bermúdez, Ph.D. Associate Professor University of Florida Programming Language Principles Lecture 2.
CS 404Ahmed Ezzat 1 CS 404 Introduction to Compiler Design Lecture 1 Ahmed Ezzat.
3/20/20161 Programming Languages and Compilers (CS 421) Reza Zamani Based in part on slides by Mattox Beckman,
6/21/20161 Programming Languages and Compilers (CS 421) Reza Zamani Based in part on slides by Mattox Beckman,
Lesson 10 Type Reconstruction
CS5205: Foundation in Programming Languages Type Reconstruction
Chapter 3 – Describing Syntax
Describing Syntax and Semantics
Compiler Design (40-414) Main Text Book:
Programming Languages and Compilers (CS 421)
lec02-parserCFG May 8, 2018 Syntax Analyzer
Principles of programming languages 12: Functional programming
Programming Languages and Compilers (CS 421)
A Simple Syntax-Directed Translator
Programming Languages and Compilers (CS 421)
CS510 Compiler Lecture 4.
Lexical and Syntax Analysis
SOFTWARE DESIGN AND ARCHITECTURE
Syntax Specification and Analysis
PROGRAMMING LANGUAGES
Programming Languages and Compilers (CS 421)
Syntax versus Semantics
Compiler Lecture 1 CS510.
CS416 Compiler Design lec00-outline September 19, 2018
Programming Languages and Compilers (CS 421)
Programming Languages and Compilers (CS 421)
Programming Languages and Compilers (CS 421)
Lexical and Syntax Analysis
Lecture 2: General Structure of a Compiler
Introduction CI612 Compiler Design CI612 Compiler Design.
Programming Languages and Compilers (CS 421)
Programming Languages and Compilers (CS 421)
Programming Languages and Compilers (CS 421)
R.Rajkumar Asst.Professor CSE
Programming Languages and Compilers (CS 421)
CS416 Compiler Design lec00-outline February 23, 2019
Programming Languages and Compilers (CS 421)
Programming Languages and Compilers (CS 421)
Programming Languages and Compilers (CS 421)
Programming Languages and Compilers (CS 421)
High-Level Programming Language
Lec00-outline May 18, 2019 Compiler Design CS416 Compiler Design.
lec02-parserCFG May 27, 2019 Syntax Analyzer
Programming Languages and Compilers (CS 421)
Programming Languages and Compilers (CS 421)
Programming Languages and Compilers (CS 421)
COMPILER CONSTRUCTION
Programming Languages and Compilers (CS 421)
Presentation transcript:

Programming Languages and Compilers (CS 421) Sasa Misailovic 4110 SC, UIUC https://courses.engr.illinois.edu/cs421/fa2017/CS421A Based in part on slides by Mattox Beckman, as updated by Vikram Adve, Gul Agha, and Elsa L Gunter 11/27/2018

Two Problems Type checking Typability Question: Does exp. e have type  in env ? Answer: Yes / No Method: Type derivation Typability Question Does exp. e have some type in env. ? If so, what is it? Answer: Type  / error Method: Type inference 11/27/2018

Type Inference - Outline Begin by assigning a type variable as the type of the whole expression Decompose the expression into component expressions Use typing rules to generate constraints on components and whole Recursively find substitution that solves typing judgment of first subcomponent Apply substitution to next subcomponent and find substitution solving it; compose with first, etc. Apply composition of all substitutions to original type variable to get answer

Type Inference - Example What type can we give to (fun x -> fun f -> f (f x)) Start with a type variable and then look at the way the term is constructed 11/27/2018

Type Inference - Example First approximate: Give type to full expr { }|- (fun x -> fun f -> f (f x)) :  Second approximate: use fun rule {x : } |- (fun f -> f (f x)) :  { } |- (fun x -> fun f -> f (f x)) :  Remember constraint   (  ) 11/27/2018

Type Inference - Example Third approximate: use fun rule {f :  ; x : } |- f (f x) :  {x : } |- (fun f -> f (f x)) :  { } |- (fun x -> fun f -> f(f x)) :    (  );   (  ) 11/27/2018

Type Inference - Example Fourth approximate: use app rule {f:; x:}|- f :    {f:; x:}|- f x :  {f :  ; x : } |- (f (f x)) :  {x : } |- (fun f -> f (f x)) :  { } |- (fun x -> fun f -> f (f x)) :    (  );   (  ) 11/27/2018

Type Inference - Example Fifth approximate: use var rule, get constraint   , Solve with same Apply to next sub-proof {f:; x:}|- f :    {f:; x:}|- f x :  {f :  ; x : } |- (f (f x)) :  {x : } |- (fun f -> f (f x)) :  { } |- (fun x -> fun f -> f (f x)) :    (  );   (  ) 11/27/2018

Type Inference - Example Current subst: {  } … {f:  ; x:}|- f x :  {f :  ; x : } |- (f (f x)) :  {x : } |- (fun f -> f (f x)) :  { } |- (fun x -> fun f -> f (f x)) :    (  );   (  ) 11/27/2018

Type Inference - Example Current subst: {  } Use App Rule {f:; x:}|- f:z {f:; x:}|- x:z … {f:  ; x:}|- f x :  {f :  ; x : } |- (f (f x)) :  {x : } |- (fun f -> f (f x)) :  { } |- (fun x -> fun f -> f (f x)) :    (  );   (  ) 11/27/2018

Type Inference - Example Current subst: {  } Var rule: Solve z  Unification {f:; x:}|- f:z {f:; x:}|- x:z … {f:  ; x:}|- f x :  {f :  ; x : } |- (f (f x)) :  {x : } |- (fun f -> f (f x)) :  { } |- (fun x -> fun f -> f (f x)) :    (  );   (  ) 11/27/2018

Type Inference - Example Current subst: {z, } o {  } Var rule: Solve z  Unification {f:; x:}|- f:z {f:; x:}|- x:z … {f:  ; x:}|- f x :  {f :  ; x : } |- (f (f x)) :  {x : } |- (fun f -> f (f x)) :  { } |- (fun x -> fun f -> f (f x)) :    (  );   (  ) 11/27/2018

Type Inference - Example Current subst: {z, , } Apply to next sub-proof (done)… {f:; x:}|- x:z … {f:  ; x:}|- f x :  {f :  ; x : } |- (f (f x)) :  {x : } |- (fun f -> f (f x)) :  { } |- (fun x -> fun f -> f (f x)) :    (  );   (  ) 11/27/2018

Type Inference - Example Current subst: {z, , } Apply to next sub-proof (done)… {f:; x:}|- x: … {f:  ; x:}|- f x :  {f :  ; x : } |- (f (f x)) :  {x : } |- (fun f -> f (f x)) :  { } |- (fun x -> fun f -> f (f x)) :    (  );   (  ) 11/27/2018

Type Inference - Example Current subst: {z, , } Var rule:  … {f:; x:}|- x: … {f:  ; x:}|- f x :  {f :  ; x : } |- (f (f x)) :  {x : } |- (fun f -> f (f x)) :  { } |- (fun x -> fun f -> f (f x)) :    (  );   (  ) 11/27/2018

Type Inference - Example Current subst: {}o{z, , } Solves subproof; return one layer … {f:; x:}|- x: … {f:  ; x:}|- f x :  {f :  ; x : } |- (f (f x)) :  {x : } |- (fun f -> f (f x)) :  { } |- (fun x -> fun f -> f (f x)) :    (  );   (  ) 11/27/2018

Type Inference - Example Current subst: {, z, , } Solves this subproof; return one layer … … {f:  ; x:}|- f x :  {f :  ; x : } |- (f (f x)) :  {x : } |- (fun f -> f (f x)) :  { } |- (fun x -> fun f -> f (f x)) :    (  );   (  ) 11/27/2018

Type Inference - Example Current subst: {, z, , } Need to satisfy constraint   (  ), given subst, becomes:   (()  ) … {f :  ; x : } |- (f (f x)) :  {x : } |- (fun f -> f (f x)) :  { } |- (fun x -> fun f -> f (f x)) :    (  );   (  ) 11/27/2018

Type Inference - Example Current subst: {  (()  ),, z, , } Solves subproof; return one layer … {f :  ; x : } |- (f (f x)) :  {x : } |- (fun f -> f (f x)) :  { } |- (fun x -> fun f -> f (f x)) :    (  );   (  ) 11/27/2018

Type Inference - Example Current subst: {  (()  ),, z, , } Need to satisfy constraint   (  ) given subst:   (  (()  )) … {x : } |- (fun f -> f (f x)) :  { } |- (fun x -> fun f -> f (f x)) :    (  ); 11/27/2018

Type Inference - Example Current subst: {  (  (()  )),   (()  ),, z, , } Solves subproof; return on layer {x : } |- (fun f -> f (f x)) :  { } |- (fun x -> fun f -> f (f x)) :  11/27/2018

Type Inference - Example Current subst: {  (  (()  )),   (()  ),, z, , } Done:   (  (()  )) { } |- (fun x -> fun f -> f (f x)) :  11/27/2018

Type Inference Algorithm Let infer (, e, ) = s  is a typing environment (giving polymorphic types to expression variables) e is an expression  is a type (with type variables), s is a substitution of types for type variables Idea: s is the constraints on type variables necessary for  |- e :  Should have s() |- e : s() valid 11/27/2018

Type Inference Algorithm infer (, exp, ) = Case exp of Var v --> return Unify{  freshInstance((v))} Replace all quantified type vars by fresh ones Const c --> return Unify{  freshInstance  } where  |- c :  by the constant rules fun x -> e --> Let ,  be fresh variables Let s = infer ({x: } + , e, ) Return Unify({s()  s(  )}) o s 11/27/2018

Type Inference Algorithm (cont) Case exp of App (e1 e2) --> Let  be a fresh variable Let s1 = infer(, e1,   ) Let s2 = infer(s(), e2, s()) Return s2 o s1 11/27/2018

Type Inference Algorithm (cont) Case exp of If e1 then e2 else e3 --> Let s1 = infer(, e1, bool) Let s2 = infer(s, e2, s1()) Let s3 = infer(s2 o s1(),e2,s2 o s()) Return s3 o s2 o s1 11/27/2018

Type Inference Algorithm (cont) Case exp of let x = e1 in e2 --> Let  be a fresh variable Let s1 = infer(, e1, ) Let s2 = infer({x:GEN(s1(), s1())} + s1(), e2, s1()) Return s2 o s1 11/27/2018

Type Inference Algorithm (cont) Case exp of let rec x = e1 in e2 --> Let  be a fresh variable Let s1 = infer({x: } + , e1, ) Let s2 = infer({x:GEN(s1(),s1())} + s1(), e2, s1()) Return s2 o s1 11/27/2018

Type Inference Algorithm (cont) To infer a type, introduce type_of Let  be a fresh variable type_of (, e) = Let s = infer (, e, ) Return s () Need an algorithm for Unif 11/27/2018

Background for Unification Terms made from constructors and variables (for the simple first order case) Constructors may be applied to arguments (other terms) to make new terms Variables and constructors with no arguments are base cases Constructors applied to different number of arguments (arity) considered different Substitution of terms for variables 11/27/2018

Simple Implementation Background type term = Variable of string | Const of (string * term list) let rec subst var_name residue term = match term with Variable name -> if var_name = name then residue else term | Const (c, tys) -> Const (c, List.map (subst var_name residue) tys);; 11/27/2018

Unification Problem Given a set of pairs of terms (“equations”) {(s1, t1), (s2, t2), …, (sn, tn)} (the unification problem) does there exist a substitution  (the unification solution) of terms for variables such that (si) = (ti), for all i = 1, …, n? 11/27/2018

Type Inference and type checking Pattern matching as in OCaml Uses for Unification Type Inference and type checking Pattern matching as in OCaml Can use a simplified version of algorithm Logic Programming - Prolog Simple parsing 11/27/2018

Unification Algorithm Let S = {(s1= t1), (s2= t2), …, (sn= tn)} be a unification problem. Case S = { }: Unif(S) = Identity function (i.e., no substitution) Case S = {(s, t)}  S’: Four main steps 11/27/2018

Unification Algorithm Delete: if s = t (they are the same term) then Unif(S) = Unif(S’) Decompose: if s = f(q1, … , qm) and t =f(r1, … , rm) (same f, same m!), then Unif(S) = Unif({(q1, r1), …, (qm, rm)}  S’) Orient: if t = x is a variable, and s is not a variable, Unif(S) = Unif ({(x = s)}  S’) 11/27/2018

Unification Algorithm Eliminate: if s = x is a variable, and x does not occur in t (the occurs check), then Let  = {x  t} Let  = Unif((S’)) Unif(S) = {x  (t)} o  Note: {x  a} o {y  b} = {y  ({x  a}(b))} o {x  a} if y not in a 11/27/2018

Tricks for Efficient Unification Don’t return substitution, rather do it incrementally Make substitution be constant time Requires implementation of terms to use mutable structures (or possibly lazy structures) We won’t discuss these 11/27/2018

Example x,y,z variables, f,g constructors Unify {(f(x) = f(g(f(z),y))), (g(y,y) = x)} = ? 11/27/2018

Example x,y,z variables, f,g constructors S = {(f(x) = f(g(f(z),y))), (g(y,y) = x)} is nonempty Unify {(f(x) = f(g(f(z),y))), (g(y,y) = x)} = ? 11/27/2018

Example x,y,z variables, f,g constructors Pick a pair: (g(y,y) = x) Unify {(f(x) = f(g(f(z),y))), (g(y,y) = x)} = ? 11/27/2018

Example x,y,z variables, f,g constructors Pick a pair: (g(y,y)) = x) Orient: (x = g(y,y)) Unify {(f(x) = f(g(f(z),y))), (g(y,y) = x)} = Unify {(f(x) = f(g(f(z),y))), (x = g(y,y))} by Orient 11/27/2018

Example x,y,z variables, f,g constructors Unify {(f(x) = f(g(f(z),y))), (x = g(y,y))} = ? 11/27/2018

Example x,y,z variables, f,g constructors {(f(x) = f(g(f(z),y))), (x = g(y,y))} is non-empty Unify {(f(x) = f(g(f(z),y))), (x = g(y,y))} = ? 11/27/2018

Example x,y,z variables, f,g constructors Pick a pair: (x = g(y,y)) Unify {(f(x) = f(g(f(z),y))), (x = g(y,y))} = ? 11/27/2018

Example x,y,z variables, f,g constructors Pick a pair: (x = g(y,y)) Eliminate x with substitution {x g(y,y)} Check: x not in g(y,y) . Unify {(f(x) = f(g(f(z),y))), (x = g(y,y))} = ? 11/27/2018

Example x,y,z variables, f,g constructors Pick a pair: (x = g(y,y)) Eliminate x with substitution {x g(y,y)} Unify {(f(x) = f(g(f(z),y))), (x = g(y,y))} = Unify {(f(g(y,y)) = f(g(f(z),y)))} o {x g(y,y)} 11/27/2018

Example x,y,z variables, f,g constructors Unify {(f(g(y,y)) = f(g(f(z),y)))} o {x g(y,y)} = ? 11/27/2018

Example x,y,z variables, f,g constructors {(f(g(y,y)) = f(g(f(z),y)))} is non-empty Unify {(f(g(y,y)) = f(g(f(z),y)))} o {x g(y,y)} = ? 11/27/2018

Example x,y,z variables, f,g constructors Pick a pair: (f(g(y,y)) = f(g(f(z),y))) Unify {(f(g(y,y)) = f(g(f(z),y)))} o {x g(y,y)} = ? 11/27/2018

Example x,y,z variables, f,g constructors Pick a pair: (f(g(y,y)) = f(g(f(z),y))) Decompose:(f(g(y,y)) = f(g(f(z),y))) becomes {(g(y,y) = g(f(z),y))} Unify {(f(g(y,y)) = f(g(f(z),y)))} o {x g(y,y)} = Unify {(g(y,y) = g(f(z),y))} o {x g(y,y)} 11/27/2018

Example x,y,z variables, f,g constructors {(g(y,y) = g(f(z),y))} is non-empty Unify {(g(y,y) = g(f(z),y))} o {x g(y,y)} = ? 11/27/2018

Example x,y,z variables, f,g constructors Pick a pair: (g(y,y) = g(f(z),y)) Unify {(g(y,y) = g(f(z),y))} o {x g(y,y)} = ? 11/27/2018

Example x,y,z variables, f,g constructors Pick a pair: (f(g(y,y)) = f(g(f(z),y))) Decompose: (g(y,y)) = g(f(z),y)) becomes {(y = f(z)); (y = y)} Unify {(g(y,y) = g(f(z),y))} o {x g(y,y)} = Unify {(y = f(z)); (y = y)} o {x g(y,y)} 11/27/2018

Example x,y,z variables, f,g constructors Unify {(y = f(z)); (y = y)} o {x g(y,y)} = ? 11/27/2018

Example x,y,z variables, f,g constructors {(y = f(z)); (y = y)} o {x g(y,y)} is non-empty Unify {(y = f(z)); (y = y)} o {x g(y,y)} = ? 11/27/2018

Example x,y,z variables, f,g constructors Pick a pair: (y = f(z)) Unify {(y = f(z)); (y = y)} o {x g(y,y)} = ? 11/27/2018

Example x,y,z variables, f,g constructors Pick a pair: (y = f(z)) Eliminate y with {y  f(z)} Unify {(y = f(z)); (y = y)} o {x g(y,y)} = Unify {(f(z) = f(z))} o {y  f(z)} o {x g(y,y)}= Unify {(f(z) = f(z))} o {y  f(z); x g(f(z), f(z))} 11/27/2018

Example x,y,z variables, f,g constructors Unify {(f(z) = f(z))} o {y  f(z); x g(f(z), f(z))} = ? 11/27/2018

Example x,y,z variables, f,g constructors {(f(z) = f(z))} is non-empty Unify {(f(z) = f(z))} o {y  f(z); x g(f(z), f(z))} = ? 11/27/2018

Example x,y,z variables, f,g constructors Pick a pair: (f(z) = f(z)) Unify {(f(z) = f(z))} o {y  f(z); x g(f(z), f(z))} = ? 11/27/2018

Example x,y,z variables, f,g constructors Pick a pair: (f(z) = f(z)) Delete Unify {(f(z) = f(z))} o {y  f(z); x g(f(z), f(z))} = Unify {} o {y  f(z); x g(f(z), f(z))} 11/27/2018

Example x,y,z variables, f,g constructors Unify {} o {y  f(z); x g(f(z), f(z))} = ? 11/27/2018

{y  f(z); x g(f(z), f(z))} Example x,y,z variables, f,g constructors {} is empty Unify {} = identity function Unify {} o {y  f(z); x g(f(z), f(z))} = {y  f(z); x g(f(z), f(z))} 11/27/2018

Example Unify {(f(x) = f(g(f(z),y))), (g(y,y) = x)} = {y  f(z); x g(f(z), f(z))} f( x ) = f(g(f(z), y ))  f(g(f(z), f(z))) = f(g(f(z), f(z))) . g( y , y ) = x .  g(f(z),f(z)) = g(f(z), f(z)) . 11/27/2018

Example of Failure: Decompose Unify{(f(x,g(y)) = f(h(y),x))} Decompose: (f(x,g(y)) = f(h(y),x)) = Unify {(x = h(y)), (g(y) = x)} Orient: (g(y) = x) = Unify {(x = h(y)), (x = g(y))} Eliminate: (x = h(y)) = Unify {(h(y) = g(y))} o {x  h(y)} No rule to apply! Decompose fails! 11/27/2018

Example of Failure: Occurs Check Unify{(f(x,g(x)) = f(h(x),x))} Decompose: (f(x,g(x)) = f(h(x),x)) = Unify {(x = h(x)), (g(x) = x)} Orient: (g(y) = x) = Unify {(x = h(x)), (x = g(x))} No rules apply. 11/27/2018

Major Phases of a Compiler Optimize Optimized IR Source Program Lex Relocatable Object Code Instruction Selection Tokens Linker Parse Unoptimized Machine-Specific Assembly Language Abstract Syntax Machine Code Semantic Analysis Optimize Optimized Machine-Specific Assembly Language Symbol Table Translate Emit code Intermediate Representation Assembly Language Assembler Modified from “Modern Compiler Implementation in ML”, by Andrew Appel

Meta-discourse Language Syntax and Semantics Syntax - Regular Expressions, DFSAs and NDFSAs - Grammars Semantics - Natural Semantics - Transition Semantics 11/27/2018

Language Syntax Syntax is the description of which strings of symbols are meaningful expressions in a language It takes more than syntax to understand a language; need meaning (semantics) too Syntax is the entry point 11/27/2018

Syntax of English Language Pattern 1 Pattern 2 11/27/2018

Elements of Syntax Character set – previously always ASCII, now often 64 character sets Keywords – usually reserved Special constants – cannot be assigned to Identifiers – can be assigned to Operator symbols Delimiters (parenthesis, braces, brackets) Blanks (aka white space) 11/27/2018

Elements of Syntax Expressions Type expressions if ... then begin ... ; ... end else begin ... ; ... end Type expressions typexpr1 ->  typexpr2 Declarations (in functional languages) let pattern1 =  expr1 in  expr Statements (in imperative languages) a = b + c Subprograms let pattern1 =  let rec inner = … in  expr 11/27/2018

Classes (for object-oriented languages) Elements of Syntax Modules Interfaces Classes (for object-oriented languages) 11/27/2018

Lexing and Parsing Converting strings to abstract syntax trees done in two phases Lexing: Converting string (or streams of characters) into lists (or streams) of tokens (the “words” of the language) Specification Technique: Regular Expressions Parsing: Convert a list of tokens into an abstract syntax tree Specification Technique: BNF Grammars 11/27/2018

Formal Language Descriptions Regular expressions, regular grammars, finite state automata Context-free grammars, BNF grammars, syntax diagrams Whole family more of grammars and automata – covered in automata theory 11/27/2018

Grammars Grammars are formal descriptions of which strings over a given character set are in a particular language Language designers write grammar Language implementers use grammar to know what programs to accept Language users use grammar to know how to write legitimate programs 11/27/2018