lecture 12 - university of waterloovganesh/teaching/s2014/ece351/lectures... · original slides by...

39
Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12 1 Type Systems – Part 2, and Abstract Syntax Trees Lecture 12

Upload: trinhnhan

Post on 29-Aug-2018

214 views

Category:

Documents


0 download

TRANSCRIPT

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

1

Type Systems – Part 2, and Abstract Syntax Trees

Lecture 12

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

2

Outline of today’s lecture

•  Type systems continued

•  Abstract-syntax tree (AST) –  All subsequent phases of a compiler operate on

ASTs

–  How is it different from a parse tree?

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

3

Last class

•  Introduction to semantic analysis

•  Dynamic and static scope

•  Symbol Table

•  Introduction to types and typing rules

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

4

Why a Separate Semantic Analysis?

•  Parsing alone cannot catch many errors

•  Some language constructs are not context-free

•  Separation of concerns: less-complicated parsers

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

5

What Does Semantic Analysis Do?

•  Checks of many kinds . . . Checks:

1.  All identifiers are declared 2.  Types 3.  Inheritance relationships 4.  Classes defined only once 5.  Methods in a class defined only once 6.  Reserved identifiers are not misused And others . . .

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

6

What’s Wrong?

•  Example 1 Let y: String ← “abc” in y + 3

•  Example 2

Let y: Int in x + 3

Note: An example property that is not context free.

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

7

Types

•  What is a type? –  The notion varies from language to language

•  Consensus –  A set of values –  A set of operations on those values

•  Classes are one instantiation of the modern notion of type

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

8

Why Do We Need Type Systems?

Consider the assembly language fragment

add $r1, $r2, $r3

What are the types of $r1, $r2, $r3?

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

9

Types and Operations

•  Certain operations are legal for values of each type

–  It doesn’t make sense to add a function pointer and an integer in C++

–  It does make sense to add two integers

–  But both have the same assembly language implementation!

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

10

Type Systems

•  A language’s type system specifies which operations are valid for which types

•  The goal of type checking is to ensure that operations are used with the correct types –  Enforces intended interpretation of values,

because nothing else will!

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

11

Type Checking Overview

•  Three kinds of languages:

–  Statically typed: All or almost all checking of types is done as part of compilation (C, Java, Cool)

–  Dynamically typed: Almost all checking of types is done as part of program execution (Scheme)

–  Untyped: No type checking (machine code)

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

12

Type Checking and Type Inference

•  Type Checking is the process of verifying fully typed programs

•  Type Inference is the process of filling in missing type information

•  The two are different, but the terms are often used interchangeably

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

13

Rules of Inference

•  We have seen two examples of formal notation specifying parts of a compiler –  Regular expressions –  Context-free grammars

•  The appropriate formalism for type checking is logical rules of inference

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

14

Why Rules of Inference?

•  Inference rules have the form If Hypothesis is true, then Conclusion is true

•  Type checking computes via reasoning

If E1 and E2 have certain types, then E3 has a certain type

•  Rules of inference are a compact notation for “If-Then” statements

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

15

From English to an Inference Rule

•  The notation is easy to read with practice

•  Start with a simplified system and gradually add features

•  Building blocks –  Symbol ∧ is “and” –  Symbol ⇒ is “if-then” –  x:T is “x has type T”

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

16

From English to an Inference Rule (2)

If e1 has type Int and e2 has type Int, then e1 + e2 has type Int

(e1 has type Int ∧ e2 has type Int) ⇒ e1 + e2 has type Int (e1: Int ∧ e2: Int) ⇒ e1 + e2: Int

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

17

From English to an Inference Rule (3)

The statement (e1: Int ∧ e2: Int) ⇒ e1 + e2: Int

is a special case of Hypothesis1 ∧ . . . ∧ Hypothesisn ⇒ Conclusion

This is an inference rule.

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

18

Notation for Inference Rules

•  By tradition inference rules are written ` Hypothesis … ` Hypothesis

` Conclusion

•  Type rules have hypotheses and conclusions ` e:T

•  ` means “it is provable that . . .”

Two Rules

i is an integer literal

` i : Int

` e1: Int ` e2: Int ` e1 + e2 : Int

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

19

[Int]

[Add]

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

20

Two Rules (Cont.)

•  These rules give templates describing how to type integers and + expressions

•  By filling in the templates, we can produce complete typings for expressions

Example: 1 + 2

1 is an int literal 2 is an int literal ` 1 : Int ` 2: Int

` 1 + 2 : Int

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

21

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

22

Soundness

•  A type system is sound if –  Whenever ` e: T –  Then e evaluates to a value of type T

•  We only want sound rules

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

23

Abstract Syntax Trees

•  So far a parser traces the derivation of a sequence of tokens

•  The rest of the compiler needs a structural representation of the program

•  Abstract syntax trees –  Similar to parse trees but ignore some details –  Abbreviated as AST

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

24

Abstract Syntax Tree. (Cont.)

•  Consider the grammar E → int | ( E ) | E + E

•  And the string 5 + (2 + 3)

•  After lexical analysis (a list of tokens) int5 ‘+’ ‘(‘ int2 ‘+’ int3 ‘)’ •  During parsing we build a parse tree …

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

25

Example of Parse Tree

E

E E

( E )

+

E +

int5

int2

E

int3

•  Traces the operation of the parser

•  Does capture the nesting structure

•  But too much info –  Parentheses –  Single-successor

nodes

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

26

Example of Abstract Syntax Tree

•  Also captures the nesting structure •  But abstracts from the concrete syntax

=> more compact and easier to use •  An important data structure in a compiler

PLUS

PLUS

2 5 3

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

27

Semantic Actions

•  This is what we’ll use to construct ASTs

•  Each grammar symbol may have attributes –  For terminal symbols (lexical tokens) attributes can

be calculated by the lexer

•  Each production may have an action –  Written as: X → Y1 … Yn { action } –  That can refer to or compute symbol attributes

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

28

Semantic Actions: An Example

•  Consider the grammar E → int | E + E | ( E )

•  For each symbol X define an attribute X.val –  For terminals, val is the associated lexeme –  For non-terminals, val is the expression’s value (and is

computed from values of subexpressions)

•  We annotate the grammar with actions: E → int { E.val = int.val } | E1 + E2 { E.val = E1.val + E2.val } | ( E1 ) { E.val = E1.val }

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

29

Semantic Actions: An Example (Cont.)

Productions Equations E → E1 + E2 E.val = E1.val + E2.val E1 → int5 E1.val = int5.val = 5 E2 → ( E3) E2.val = E3.val E3 → E4 + E5 E3.val = E4.val + E5.val E4 → int2 E4.val = int2.val = 2 E5 → int3 E5.val = int3.val = 3

•  String: 5 + (2 + 3) •  Tokens: int5 ‘+’ ‘(‘ int2 ‘+’ int3 ‘)’

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

30

Semantic Actions: Notes

•  Semantic actions specify a system of equations –  Order of resolution is not specified

•  Example: E3.val = E4.val + E5.val –  Must compute E4.val and E5.val before E3.val –  We say that E3.val depends on E4.val and E5.val

•  The parser must find the order of evaluation

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

31

Dependency Graph

E

E1 E2

( E3 )

+

E4 +

int5

int2

E5

int3

+

+

2

5

•  Each node labeled E has one slot for the val attribute

•  Note the dependencies

3

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

32

Evaluating Attributes

•  An attribute must be computed after all its successors in the dependency graph have been computed –  In previous example attributes can be computed

bottom-up

•  Such an order exists when there are no cycles –  Cyclically defined attributes are not legal

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

33

Dependency Graph

E

E1 E2

( E3 )

+

E4 +

int5

int2

E5

int3

10

5

5 5

3 2

2

5

3

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

34

Semantic Actions: Notes (Cont.)

•  Synthesized attributes –  Calculated from attributes of descendents in the

parse tree –  E.val is a synthesized attribute –  Can always be calculated in a bottom-up order

•  Grammars with only synthesized attributes are called S-attributed grammars –  Most common case

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

35

Semantic Actions: Notes (Cont.)

•  Semantic actions can be used to build ASTs

•  And many other things as well –  Also used for type checking, code generation, …

•  Process is called syntax-directed translation –  Substantial generalization over CFGs

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

36

Constructing An AST

•  We first define the AST data type •  Consider an abstract tree type with two

constructors:

mkleaf(n)

mkplus(

T1

) = ,

T2

=

PLUS

T1 T2

n

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

37

Constructing a Parse Tree

•  We define a synthesized attribute ast –  Values of ast values are ASTs –  We assume that int.lexval is the value of the

integer lexeme –  Computed using semantic actions

E → int E.ast = mkleaf(int.lexval) | E1 + E2 E.ast = mkplus(E1.ast, E2.ast) | ( E1 ) E.ast = E1.ast

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

38

Parse Tree Example

•  Consider the string int5 ‘+’ ‘(‘ int2 ‘+’ int3 ‘)’ •  A bottom-up evaluation of the ast attribute: E.ast = mkplus(mkleaf(5), mkplus(mkleaf(2), mkleaf(3))

PLUS

PLUS

2 5 3

Original Slides by Prof. Alex Aiken (Modified by Prof. Vijay Ganesh) Lecture 12

39

Summary

•  We can specify language syntax using CFG

•  A parser will answer whether s ∈ L(G) –  … and will build a parse tree –  … which we convert to an AST –  … and pass on to the rest of the compiler