CSE P 501 Compilers. Static Semantics Hal Perkins Spring UW CSE P 501 Spring 2018 I-1

Similar documents
CSE P 501 Compilers. Static Semantics Hal Perkins Winter /22/ Hal Perkins & UW CSE I-1

Static Semantics. Winter /3/ Hal Perkins & UW CSE I-1

CSE Compilers. Reminders/ Announcements. Lecture 15: Seman9c Analysis, Part III Michael Ringenburg Winter 2013

Compiler Passes. Semantic Analysis. Semantic Analysis/Checking. Symbol Tables. An Example

CS1622. Semantic Analysis. The Compiler So Far. Lecture 15 Semantic Analysis. How to build symbol tables How to use them to find

SEMANTIC ANALYSIS TYPES AND DECLARATIONS

The Compiler So Far. CSC 4181 Compiler Construction. Semantic Analysis. Beyond Syntax. Goals of a Semantic Analyzer.

CSE 431S Type Checking. Washington University Spring 2013

The role of semantic analysis in a compiler

Lecture 7: Type Systems and Symbol Tables. CS 540 George Mason University

Semantic Analysis. Outline. The role of semantic analysis in a compiler. Scope. Types. Where we are. The Compiler Front-End

CS412/CS413. Introduction to Compilers Tim Teitelbaum. Lecture 17: Types and Type-Checking 25 Feb 08

Agenda. CSE P 501 Compilers. Java Implementation Overview. JVM Architecture. JVM Runtime Data Areas (1) JVM Data Types. CSE P 501 Su04 T-1

CSE 401/M501 Compilers

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

CSE P 501 Compilers. Implementing ASTs (in Java) Hal Perkins Autumn /20/ Hal Perkins & UW CSE H-1

CSE 401/M501 Compilers

The SPL Programming Language Reference Manual

CSE P 501 Compilers. Java Implementation JVMs, JITs &c Hal Perkins Winter /11/ Hal Perkins & UW CSE V-1

Compilers CS S-05 Semantic Analysis

CSE P 501 Compilers. Implementing ASTs (in Java) Hal Perkins Winter /22/ Hal Perkins & UW CSE H-1

Syntax Errors; Static Semantics

Anatomy of a Compiler. Overview of Semantic Analysis. The Compiler So Far. Why a Separate Semantic Analysis?

Data Types. Every program uses data, either explicitly or implicitly to arrive at a result.

Types and Type Inference

Intermediate Code Generation

Semantic Analysis. How to Ensure Type-Safety. What Are Types? Static vs. Dynamic Typing. Type Checking. Last time: CS412/CS413

CSCE 314 Programming Languages. Type System

Programming Languages Third Edition. Chapter 7 Basic Semantics

Compiler construction

CS558 Programming Languages

The PCAT Programming Language Reference Manual

Outline. Java Models for variables Types and type checking, type safety Interpretation vs. compilation. Reasoning about code. CSCI 2600 Spring

Acknowledgement. CS Compiler Design. Semantic Processing. Alternatives for semantic processing. Intro to Semantic Analysis. V.

Semantic Analysis and Type Checking

G Programming Languages Spring 2010 Lecture 6. Robert Grimm, New York University

A Short Summary of Javali

Semantic Analysis. Outline. The role of semantic analysis in a compiler. Scope. Types. Where we are. The Compiler so far

Structure of Programming Languages Lecture 10

Compilers. Type checking. Yannis Smaragdakis, U. Athens (original slides by Sam

CS S-06 Semantic Analysis 1

Introduction to Programming Using Java (98-388)

Outline. Introduction Concepts and terminology The case for static typing. Implementing a static type system Basic typing relations Adding context

CMSC 330: Organization of Programming Languages

Static Semantics. Lecture 15. (Notes by P. N. Hilfinger and R. Bodik) 2/29/08 Prof. Hilfinger, CS164 Lecture 15 1

Topics Covered Thus Far CMSC 330: Organization of Programming Languages

The compilation process is driven by the syntactic structure of the program as discovered by the parser

COP 3330 Final Exam Review

CSE P 501 Compilers. Intermediate Representations Hal Perkins Spring UW CSE P 501 Spring 2018 G-1

Programming Languages, Summary CSC419; Odelia Schwartz

Fundamentals of Programming Languages

Topics Covered Thus Far. CMSC 330: Organization of Programming Languages. Language Features Covered Thus Far. Programming Languages Revisited

Types and Type Inference

CSE 401 Final Exam. December 16, 2010

5. Semantic Analysis. Mircea Lungu Oscar Nierstrasz

Weiss Chapter 1 terminology (parenthesized numbers are page numbers)

Concepts of Programming Languages

Lecture Overview. [Scott, chapter 7] [Sebesta, chapter 6]

Semantic Processing. Semantic Errors. Semantics - Part 1. Semantics - Part 1

CPSC 3740 Programming Languages University of Lethbridge. Data Types

Types. What is a type?

CSE P 501 Compilers. Parsing & Context-Free Grammars Hal Perkins Spring UW CSE P 501 Spring 2018 C-1

09/02/2013 TYPE CHECKING AND CASTING. Lecture 5 CS2110 Spring 2013

5. Semantic Analysis. Mircea Lungu Oscar Nierstrasz

Object Oriented Programming: In this course we began an introduction to programming from an object-oriented approach.

SE352b: Roadmap. SE352b Software Engineering Design Tools. W3: Programming Paradigms

Tail Calls. CMSC 330: Organization of Programming Languages. Tail Recursion. Tail Recursion (cont d) Names and Binding. Tail Recursion (cont d)

Introduction Primitive Data Types Character String Types User-Defined Ordinal Types Array Types. Record Types. Pointer and Reference Types

Type Checking and Type Equality

COMP 181. Agenda. Midterm topics. Today: type checking. Purpose of types. Type errors. Type checking

Semantic analysis. Semantic analysis. What we ll cover. Type checking. Symbol tables. Symbol table entries

CS558 Programming Languages

Project Compiler. CS031 TA Help Session November 28, 2011

CSE450. Translation of Programming Languages. Lecture 11: Semantic Analysis: Types & Type Checking

G Programming Languages - Fall 2012

Francesco Nidito. Programmazione Avanzata AA 2007/08

Absolute C++ Walter Savitch

// the current object. functioninvocation expression. identifier (expressionlist ) // call of an inner function

CSE 401/M501 Compilers

COS 320. Compiling Techniques

Classes, Structs and Records. Internal and External Field Access

The Decaf Language. 1 Lexical considerations

UNIVERSITY OF CALIFORNIA Department of Electrical Engineering and Computer Sciences Computer Science Division. P. N. Hilfinger

Type Checking and Type Inference

Computer Science Department Carlos III University of Madrid Leganés (Spain) David Griol Barres

CSCI-GA Scripting Languages

UNIVERSITY OF CALIFORNIA Department of Electrical Engineering and Computer Sciences Computer Science Division

Lecture 16: Static Semantics Overview 1

CSE 12 Abstract Syntax Trees

1 Terminology. 2 Environments and Static Scoping. P. N. Hilfinger. Fall Static Analysis: Scope and Types

The Structure of a Syntax-Directed Compiler

CSC 467 Lecture 13-14: Semantic Analysis

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

Lecture 12: Data Types (and Some Leftover ML)

Contents. Figures. Tables. Examples. Foreword. Preface. 1 Basics of Java Programming 1. xix. xxi. xxiii. xxvii. xxix

CA Compiler Construction

CSE P 501 Compilers. Parsing & Context-Free Grammars Hal Perkins Winter /15/ Hal Perkins & UW CSE C-1

CSE 307: Principles of Programming Languages

OBJECT ORIENTED PROGRAMMING USING C++ CSCI Object Oriented Analysis and Design By Manali Torpe

Data Types (cont.) Administrative Issues. Academic Dishonesty. How do we detect plagiarism? Strongly Typed Languages. Type System

Transcription:

CSE P 501 Compilers Static Semantics Hal Perkins Spring 2018 UW CSE P 501 Spring 2018 I-1

Administrivia Parser + AST + print visitors due Mon. 11 pm How s it going? scanner-final and parser-final tags must be exactly that Next part of project: semantics + type check out by next Tue. UW CSE P 501 Spring 2018 I-2

Agenda Static semantics Attribute grammars Symbol tables Types & type checking Wrapup Disclaimer: There s (lots) more here than the what we need for the project UW CSE P 501 Spring 2018 I-3

What do we need to know to check if this is legal and compile it? class C { int a; C(int initial) { a = initial; } void seta(int val) { a = val; } } class Main { public static void main(){ C c = new C(17); c.seta(42); } } UW CSE P 501 Spring 2018 I-4

Beyond Syntax There is a level of correctness not captured by a context-free grammar Has a variable been declared? Are types consistent in an expression? In the assignment x=y, is y assignable to x? Does a method call have the right number and types of parameters? In a selector p.q, is q a method or field of class instance p? Is variable x guaranteed to be initialized before it is used? Could p be null when p.q is executed? Etc. etc. etc. UW CSE P 501 Spring 2018 I-5

What else do we need to know to generate code? Where are fields allocated in an object? How big are objects? (i.e., how much storage needs to be allocated by new) Where are local variables stored when a method is called? Which methods are associated with an object/class? How do we figure out which method to call based on the run-time type of an object? UW CSE P 501 Spring 2018 I-6

Agenda Static semantics Attribute grammars Symbol tables Types & type checking Wrapup UW CSE P 501 Spring 2018 I-7

Semantic Analysis Main tasks: Extract types and other information from the program Check language rules that go beyond the context-free grammar Resolve names connect declarations and uses Understand the program well enough for synthesis Key data structure: Symbol tables Map each identifier in the program to information about it (kind, type, etc.) Later: assign storage locations (stack frame offsets) for variables, add other annotations This is the final part of the analysis phase (front end) of the compiler UW CSE P 501 Spring 2018 I-8

Some Kinds of Semantic Information Information Generated From Used to process Symbol tables Declarations Expressions, statements Type information Constant/variable information Register & memory locations Declarations, expressions Declarations, expressions Assigned by compiler Operations Statements, expressions Code generation Values Constants Expressions UW CSE P 501 Spring 2018 I-9

Semantic Checks For each language construct we want to know: What semantic rules should be checked Specified by language definition (type compatibility, required initialization, etc.) For an expression, what is its type (used to check whether expression is legal in the current context) For declarations, what information needs to be captured to use elsewhere UW CSE P 501 Spring 2018 I-10

A Sampling of Semantic Checks (0) Appearance of a name: id Check: id has been declared and is in scope Compute: Inferred type of id is its declared type Constant: v Compute: Inferred type and value are explicit UW CSE P 501 Spring 2018 I-11

A Sampling of Semantic Checks (1) Binary operator: exp 1 op exp 2 Check: exp 1 and exp 2 have compatible types Identical, or Well-defined conversion to appropriate types Compute: Inferred type is a function of the operator and operand types UW CSE P 501 Spring 2018 I-12

A Sampling of Semantic Checks (2) Assignment: exp 1 = exp 2 Check: exp 1 is assignable (not a constant or expression) Check: exp 1 and exp 2 have (assignment-)compatible types Identical, or exp 2 can be converted to exp 1 (e.g., char to int), or Type of exp 2 is a subclass of type of exp 1 (can be decided at compile time) Compute: Inferred type is type of exp 1 UW CSE P 501 Spring 2018 I-13

A Sampling of Semantic Checks (3) Cast: (exp 1 ) exp 2 Check: exp 1 is a type Check: exp 2 either Has same type as exp 1 Can be converted to type exp 1 (e.g., double to int) Downcast: is a superclass of exp 1 (usually requires a runtime check to verify; at compile time we can at least decide if it could be true) Upcast (Trivial): is the same or a subclass of exp 1 Compute: Inferred type is exp 1 UW CSE P 501 Spring 2018 I-14

A Sampling of Semantic Checks (4) Field reference: exp.f Check: exp is a reference type (not primitive type) Check: The class of exp has a field named f Compute: Inferred type is declared type of f UW CSE P 501 Spring 2018 I-15

A Sampling of Semantic Checks (5) Method call: exp.m(e 1, e 2,, e n ) Check: exp is a reference type (not primitive type) Check: The type of exp has a method named m (inherited or declared as part of the type) Check: The method m has n parameters Or, if overloading allowed, at least one version of m exists with n parameters Check: Each argument has a type that can be assigned to the associated parameter Same assignment compatible check for assignment Overloading: need to find a best match among available methods if more than one is compatible or reject if result is ambiguous (e.g., full Java, C++, others) Compute: Inferred type is given by method declaration (or could be void) UW CSE P 501 Spring 2018 I-16

A Sampling of Semantic Checks (6) Return statement: return exp; or: return; Check: If the method is not void: The expression can be assigned to a variable that has the declared return type of the method exactly the same test as for assignment statement If the method is void: There is no expression UW CSE P 501 Spring 2018 I-17

Agenda Static semantics Attribute grammars Symbol tables Types & type checking Wrapup UW CSE P 501 Spring 2018 I-18

Attribute Grammars A systematic way to think about semantic analysis Formalize properties checked and computed during semantic analysis and relate them to grammar productions in the CFG (or AST) Sometimes used directly, but even when not, AGs are a useful way to organize the analysis and think about it UW CSE P 501 Spring 2018 I-19

Attribute Grammars Idea: associate attributes with each node in the (abstract) syntax tree Examples of attributes Type information Storage location Assignable (e.g., expression vs variable lvaluevs rvalue in C/C++ terms) Value (for constant expressions) etc. Notation: X.a if a is an attribute of node X UW CSE P 501 Spring 2018 I-20

Attribute Example Assume that each node has a.val attribute giving the computed value of that node AST and attribution for (1+2) * (6 / 2) UW CSE P 501 Spring 2018 I-21

Inherited and Synthesized Attributes Given a production X ::= Y 1 Y 2 Y n A synthesized attribute X.a is a function of some combination of the attributes of the Y i s (bottom up) An inherited attribute Y i.b is a function of some combination of attributes X.a and other Y j.c (top down) Often restricted a bit: only Y s to the left can be used (has implications for evaluation) UW CSE P 501 Spring 2018 I-22

Attribute Equations For each kind of node we give a set of equations (not assignments) relating attribute values of the node and its children Example: plus.val = exp 1.val + exp 2.val Attribution (evaluation) means finding a solution that satisfies all of the equations in the tree This is an example of a constraint language UW CSE P 501 Spring 2018 I-23

Informal Example of Attribute Rules (1) Suppose we have the following grammar for a trivial language program ::= decl stmt decl ::= int id; stmt ::= exp = exp ; exp ::= id exp + exp 1 What attributes would we create to check types and assignability (lvalue vs rvalue)? UW CSE P 501 Spring 2018 I-24

Informal Example of Attribute Rules (2) Attributes of nodes env (environment, e.g., symbol table) synthesized by decl, inherited by stmt Each entry maps a name to its type and kind type (expression type) synthesized kind (variable [var or lvalue] vs value [val or rvalue]) synthesized UW CSE P 501 Spring 2018 I-25

Attributes for Declarations decl ::= int id; decl.env = {id (int, var)} UW CSE P 501 Spring 2018 I-26

Attributes for Program program ::= decl stmt stmt.env = decl.env UW CSE P 501 Spring 2018 I-27

Attributes for Constants exp ::= 1 exp.kind = val exp.type = int UW CSE P 501 Spring 2018 I-28

Attributes for Identifier Expressions exp ::= id (type, kind) = exp.env.lookup(id) exp.type = type (i.e., id type) exp.kind = kind (i.e., id kind) UW CSE P 501 Spring 2018 I-29

Attributes for Addition exp ::= exp 1 + exp 2 exp 1.env = exp.env exp 2.env = exp.env error if exp 1.type!= exp 2.type (or error if not compatible, depending on language rules) exp.type = exp 1.type (or exp 2.type) (or whatever type that language rules specify) exp.kind = val UW CSE P 501 Spring 2018 I-30

Attribute Rules for Assignment stmt ::= exp 1 = exp 2 ; exp 1.env = stmt.env exp 2.env = stmt.env Error if exp 2.type is not assignment compatible with exp 1.type Error if exp 1.kind is not var (can t be val) UW CSE P 501 Spring 2018 I-31

Example int x; x = x + 1; UW CSE P 501 Spring 2018 I-32

Extensions This can be extended to handle sequences of declarations and statements Sequences of declarations builds up larger environments, each declsynthesizes a new env from previous one plus the new binding Full environment is passed down to statements and expressions UW CSE P 501 Spring 2018 I-33

Observations These are equational computations Think functional programming, no side effects Solver can be automated, provided the attribute equations are non-circular But implementation problems Non-local computation Can t afford to literally pass around copies of large, aggregate structures like environments UW CSE P 501 Spring 2018 I-34

In Practice Attribute grammars give us a good way of thinking about how to structure semantic checks Symbol tables will hold environment information Add fields to AST nodes to refer to appropriate attributes (symbol table entries for identifiers, types for expressions, etc.) Put in appropriate places in AST class inheritance tree and exploit inheritance. Most statements don t need types, for example, but all expressions do. UW CSE P 501 Spring 2018 I-35

Agenda Static semantics Attribute grammars Symbol tables Types & type checking Wrapup UW CSE P 501 Spring 2018 I-36

Symbol Tables Map identifiers to <type, kind, location, other properties> Operations Lookup(id) => information Enter(id, information) Open/close scopes Build & use during semantics pass Build first from declarations Then use to check semantic rules Use (and augment) in later compiler phases UW CSE P 501 Spring 2018 I-37

Aside: Implementing Symbol Tables Big topic in classical (i.e., ancient) compiler courses: implementing a hashed symbol table These days: use the collection classes that are provided with the standard language libraries (Java, C#, C++, ML, Haskell, etc.) Then tune & optimize if it really matters In production compilers, it really matters Up to a point Java: Map (HashMap) will handle most cases List (ArrayList) for ordered lists (parameters, etc.) UW CSE P 501 Spring 2018 I-38

Symbol Tables for MiniJava We ll outline a scheme that does what we need, but feel free to modify/adapt as needed Mix of global and local tables UW CSE P 501 Spring 2018 I-39

Symbol Tables for MiniJava: Global Global Per Program Information Single global table to map class names to per-class symbol tables Created in a pass over class definitions in AST Used in remaining parts of compiler to check class types and their field/method names and extract information about them UW CSE P 501 Spring 2018 I-40

Symbol Tables for MiniJava: Class One symbol table for each class One entry per method/field declared in the class Contents: type information, public/private, parameter types (for methods), storage locations (later), etc. Reached from global table of class names For Java, we actually need multiple symbol tables (or more complex symbol table) per class The same identifier can be used for both a method name and a field name in a single class We will support this in our MiniJava project UW CSE P 501 Spring 2018 I-41

Symbol Tables for MiniJava: Global/Class All global tables persist throughout the compilation And beyond in a real compiler Symbolic information in Java.class or MSIL files, linktime optimization information in gcc) Debug information in.o and.exe files Some or all information in library files (.a,.so) Type information for garbage collector UW CSE P 501 Spring 2018 I-42

Symbol Tables for MiniJava: Methods One local symbol table for each method One entry for each local variable or parameter Contents: type info, storage locations (later), etc. Needed only while compiling the method; can discard when done in a single pass compiler But if type checking and code gen, etc. are done in separate passes, this table needs to persist until we re done with it And beyond: often need type info for runtime debugging, memory management/garbage collection, etc. For us, MiniJava compiler will be multiple passes UW CSE P 501 Spring 2018 I-43

Beyond MiniJava What we aren t dealing with: nested scopes Inner classes Nested scopes in methods reuse of identifiers in parallel or inner scopes; nested functions (ML, ) Lambdas and function closures Basic idea: new symbol table for inner scopes, linked to surrounding scope s table (i.e., stack of symbol tables, top = current innermost scope) Look for identifier in inner scope; if not found look in surrounding scope (recursively) Pop symbol table when we exit a scope Also ignoring static fields/methods, accessibility (public, protected, private), package scopes, UW CSE P 501 Spring 2018 I-44

Engineering Issues (1) In multipass compilers, inner scope symbol tables need to persist for use in later passes So really can t delete symbol tables on scope exit Retain tables and add a pointer to the parent scope (effectively a reverse tree of scope symbol tables with root = global table) Keep a pointer to current innermost scope (leaf) and start looking for symbols there UW CSE P 501 Spring 2018 I-45

Engineering Issues (2) In practice, often want to retain O(1) lookup or something close to it Would like to avoid O(depth of scope nesting), although some compilers assume this will be small enough not to matter When it matters, use hash tables with additional information (linked lists of various sorts) to get the scope nesting right Usually need some sort of scope entry/exit operations See a compiler textbook for ideas & details UW CSE P 501 Spring 2018 I-46

Error Recovery What to do when an undeclared identifier is encountered? Goal: only complain once (Why?) Can forge a symbol table entry for id once you ve complained so it will be found in the future Assign the forged entry a type of unknown Unknown is the type of all malformed expressions and is compatible with all other types Allows you to only complain once! (How?) UW CSE P 501 Spring 2018 I-47

Predefined Things Many languages have some predefined items (constants, functions, classes, namespaces, standard libraries, ) Include initialization code or declarations to manually create symbol table entries for these when the compiler starts up Rest of compiler generally doesn t need to know the difference between predeclared items and ones found in the program Can put standard prelude information in a file or data resource and use that to initialize Tradeoffs? UW CSE P 501 Spring 2018 I-48

Agenda Static semantics Attribute grammars Symbol tables Types & type checking Wrapup UW CSE P 501 Spring 2018 I-49

Types Classical roles of types in programming languages Run-time safety Compile-time error detection Improved expressiveness (method or operator overloading, for example) Provide information to optimizer In strongly typed languages, allows compiler to make assumptions about possible values Qualifiers like const, final, or restrict (in C) allow for other assumptions UW CSE P 501 Spring 2018 I-50

Type Checking Terminology Static vs. dynamic typing static: checking done prior to execution (e.g. compile-time) dynamic: checking during execution Strong vs. weak typing strong: guarantees no illegal operations performed weak: can t make guarantees Caveats: Hybrids common Inconsistent usage static common untyped, typeless could mean dynamic or weak weak C PERL dynamic strong Java, SML Scheme, Ruby UW CSE P 501 Spring 2018 51

Type Systems Base Types Fundamental, atomic types Typical examples: int, double, char, bool Compound/Constructed Types Built up from other types (recursively) Constructors include records/structs/classes, arrays, pointers, enumerations, functions, modules, Most language provide a small collection of these UW CSE P 501 Spring 2018 I-52

How to Represent Types in a Compiler? One solution: create a shallow class hierarchy Example: abstract class Type { } // or interface class BaseType extends Type { } class ClassType extends Type { } Should not need too many of these UW CSE P 501 Spring 2018 I-53

Types vs ASTs Types nodes are not AST nodes! AST = abstract representation of source program (including source program type info) Types = abstract representation of type semantics for type checking, inference, etc. (i.e., an ADT) Can include information not explicitly represented in the source code, or may describe types in ways more convenient for processing Be sure you have a separate type class hierarchy in your compiler distinct from the AST UW CSE P 501 Spring 2018 I-54

Base Types For each base type (int, boolean, char, double, etc.) create exactly one object to represent it (singleton!) Base types in symbol table entries and AST nodes are direct references to these objects Base type objects usually created at compiler startup Useful to create a type void object to tag functions that do not return a value Also useful to create a type unknown object for errors ( void and unknown types reduce the need for special case code in various places in the type checker; don t have to return null for no type or not declared cases) UW CSE P 501 Spring 2018 I-55

Compound Types Basic idea: use a appropriate type constructor object that refers to the component types Limited number of these correspond directly to type constructors in the language (pointer, array, record/struct/class, function, ) So a compound type is represented as a graph Some examples UW CSE P 501 Spring 2018 I-56

Class Types Type for: class id { fields and methods } class ClassType extends Type { Type baseclasstype; // ref to base class Map fields; // type info for fields Map methods; // type info for methods } (MiniJava note: May not want to represent class types exactly like this, depending on how class symbol tables are represented; e.g., the class symbol table(s) might be a sufficient representation of a class type.) UW CSE P 501 Spring 2018 I-57

Array Types For regular Java this is simple: only possibility is # of dimensions and element type (which can be another array type or anything else) class ArrayType extends Type { int ndims; Type elementtype; } UW CSE P 501 Spring 2018 I-58

Array Types for Other Languages Example: Pascal allowed arrays to be indexed by any discrete type like an enum, char, subrange of int, or other discrete type array [indextype] of elementtype (fantastic idea would be nice if it became popular again) Element type can be any other type, including an array (e.g., 2-D array = 1-D array of 1-D array) class GeneralArrayType extends Type { Type indextype; Type elementtype; } UW CSE P 501 Spring 2018 I-59

Methods/Functions Type of a method is its result type plus an ordered list of parameter types class MethodType extends Type { } Type resulttype; List parametertypes; // type or void Sometimes called the method signature UW CSE P 501 Spring 2018 I-60

Type Equivalance For base types this is simple: types are the same if they are identical Can use pointer comparison in the type checker if you have a singleton object for each base type Normally there are well defined rules for coercions between arithmetic types Compiler inserts these automatically where required by the language spec or when written explicitly by programmer (casts) often involves inserting cast or conversion nodes in AST UW CSE P 501 Spring 2018 I-61

Type Equivalence for Compound Types Two basic strategies Structural equivalence: two types are the same if they are the same kind of type and their component types are equivalent, recursively Name equivalence: two types are the same only if they have the same name, even if their structures match Different language design philosophies e.g., are Complex and Point the same? e.g., are Point (Cartesian) and Point (Polar) the same? UW CSE P 501 Spring 2018 I-62

Structural Equivalence Structural equivalence says two types are equal iff they have same structure Atomic types are tautologically the same structure and equal if they are the same type For type constructors: equal if the same constructor and, recursively, type (constructor) components are equal Ex: atomic types, array types, ML record types Implement with recursive implementation of equals, or by canonicalization of types when types created, then use pointer/ref. equality UW CSE P 501 Spring 2018 63

Name Equivalence Name equivalence says that two types are equal iff they came from the same textual occurrence of a type constructor Ex: class types, C struct types (struct tag name), datatypes in ML special case: type synonyms (e.g. typedef in C) do not define new types Implement with pointer equality assuming appropriate representation of type info UW CSE P 501 Spring 2018 64

Type Equivalence and Inheritance Suppose we have class Base { } class Derived extends Base { } A variable declared with type Base has a compile-time type or static type of Base During execution, that variable may refer to an object of class Base or any of its subclasses like Derived (or can be null), often called the the runtime type or dynamic type Since subclass is guaranteed to have all fields/methods of base class, type checker only needs to deal with declared compile-time types of variables and, in fact, can t track all possible runtime types UW CSE P 501 Spring 2018 I-65

Type Casts In most languages, one can explicitly cast an object of one type to another sometimes cast means a conversion (e.g., casts between numeric types) sometimes cast means a change of static type without doing any computation (casts between pointer types or pointer and numeric types in C) for objects can be a upcast (free and always safe) or downcast (requires runtime check to be safe) UW CSE P 501 Spring 2018 66

Type Conversions and Coercions In full Java, we can explicitly convert a value of type double to one of type int can represent as unary operator typecheck, codegen normally In full Java, can implicitly coerce a value of type int to one of type double compiler must insert unary conversion operators, based on result of type checking UW CSE P 501 Spring 2018 67

C and Java: type casts In C/C++: safety/correctness of casts not checked allows writing low-level code that s type-unsafe C++ has more elaborate casts, and one of them does require runtime checks In Java: downcasts from superclass to subclass need runtime check to preserve type safety static typechecker allows the cast codegen introduces runtime check (same code needed to handle instanceof ) Java s main need for dynamic type checking UW CSE P 501 Spring 2018 68

Various Notions of Type Compatibility There are usually several relations on types that we need to analyze in a compiler: is the same as is assignable to is same or a subclass of is convertible to Exact meanings and checks needed depend on the language spec. Be sure to check for the right one(s) UW CSE P 501 Spring 2018 I-69

Useful Compiler Functions Create a handful of methods to decide different kinds of type compatibility: Types are identical Type t 1 is assignment compatible with t 2 Parameter list is compatible with types of expressions in the method call Usual modularity reasons: isolate these decisions in one place and hide the actual type representation from the rest of the compiler Probably belongs in the same package with the type representation classes UW CSE P 501 Spring 2018 I-70

Implementing Type Checking for MiniJava Create multiple visitors for the AST First pass/passes: gather information Collect global type information for classes Could do this in one pass, or might want to do one pass to collect class information, then a second one to collect per-class information about fields, methods you decide Next set of passes: go through method bodies to check types, other semantic constraints UW CSE P 501 Spring 2018 I-71

Agenda Static semantics Attribute grammars Symbol tables Types & type checking Wrapup UW CSE P 501 Spring 2018 I-72

Disclaimer This overview of semantics, type representation, etc. should give you a decent idea of what needs to be done in your project, but you ll need to adapt the ideas to the project specifics. You ll also find good ideas in your compiler book And remember that these slides cover more than is needed for our specific project UW CSE P 501 Spring 2018 I-73

Coming Attractions To get a running compiler we need: Execution model for language constructs x86-64 assembly language for compiler writers Code generation and runtime bootstrap details We ll also spend considerable time on compiler optimization Intermediate reps., graphs, SSA, dataflow Optimization analysis and transformations UW CSE P 501 Spring 2018 I-74