Intermediate Formats. for object oriented languages

Similar documents
Intermediate Formats. for object oriented languages

Intermediate Formats. Martin Rinard Laboratory for Computer Science

MIT Semantic Analysis. Martin Rinard Laboratory for Computer Science Massachusetts Institute of Technology

MIT Semantic Analysis. Martin Rinard Laboratory for Computer Science Massachusetts Institute of Technology

A Short Summary of Javali

Intermediate Code Generation

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

IC Language Specification

Semantic Analysis and Type Checking

Compiler Theory. (Semantic Analysis and Run-Time Environments)

2. Reachability in garbage collection is just an approximation of garbage.

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

CSE 504: Compiler Design. Runtime Environments

CSE 504. Expression evaluation. Expression Evaluation, Runtime Environments. One possible semantics: Problem:

Introduction to Programming Using Java (98-388)

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

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

Static Checking and Intermediate Code Generation Pat Morin COMP 3002

Project Compiler. CS031 TA Help Session November 28, 2011

Chapter 10 Implementing Subprograms

5. Semantic Analysis. Mircea Lungu Oscar Nierstrasz

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

5. Semantic Analysis!

Syntax Errors; Static Semantics

Run-time Environments

Error Detection in LALR Parsers. LALR is More Powerful. { b + c = a; } Eof. Expr Expr + id Expr id we can first match an id:

Prof. Mohamed Hamada Software Engineering Lab. The University of Aizu Japan

Run-time Environments

Semantic actions for declarations and expressions

C++ Yanyan SHEN. slide 1

Prof. Mohamed Hamada Software Engineering Lab. The University of Aizu Japan

The basic operations defined on a symbol table include: free to remove all entries and free the storage of a symbol table

Inheritance. Transitivity

Semantic actions for declarations and expressions. Monday, September 28, 15

Semantic Analysis. Compiler Architecture

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

PRINCIPLES OF COMPILER DESIGN UNIT I INTRODUCTION TO COMPILERS

Derived and abstract data types. TDT4205 Lecture 15

SEMANTIC ANALYSIS TYPES AND DECLARATIONS

Compiler construction

CSC 467 Lecture 13-14: Semantic Analysis

Implementing Classes, Arrays, and Assignments

The Procedure Abstraction Part I: Basics

RYERSON POLYTECHNIC UNIVERSITY DEPARTMENT OF MATH, PHYSICS, AND COMPUTER SCIENCE CPS 710 FINAL EXAM FALL 96 INSTRUCTIONS

Question 1. Notes on the Exam. Today. Comp 104: Operating Systems Concepts 11/05/2015. Revision Lectures

The Procedure Abstraction

Compiler construction 2009

Naming in OOLs and Storage Layout Comp 412

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

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

CSE 12 Abstract Syntax Trees

Context-Free Grammar. Concepts Introduced in Chapter 2. Parse Trees. Example Grammar and Derivation

1. Explain the input buffer scheme for scanning the source program. How the use of sentinels can improve its performance? Describe in detail.

Notes on the Exam. Question 1. Today. Comp 104:Operating Systems Concepts 11/05/2015. Revision Lectures (separate questions and answers)

COMPILERS BASIC COMPILER FUNCTIONS

Faculty of Electrical Engineering, Mathematics, and Computer Science Delft University of Technology

Operational Semantics. One-Slide Summary. Lecture Outline

Lecture08: Scope and Lexical Address

Intermediate Code, Object Representation, Type-Based Optimization

CS 4201 Compilers 2014/2015 Handout: Lab 1

Comp 204: Computer Systems and Their Implementation. Lecture 25a: Revision Lectures (separate questions and answers)

Names, Scope, and Bindings

Implementing Higher-Level Languages. Quick tour of programming language implementation techniques. From the Java level to the C level.

Building Compilers with Phoenix

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

UNIT-4 (COMPILER DESIGN)

Action Table for CSX-Lite. LALR Parser Driver. Example of LALR(1) Parsing. GoTo Table for CSX-Lite

Operational Semantics of Cool

12/4/18. Outline. Implementing Subprograms. Semantics of a subroutine call. Storage of Information. Semantics of a subroutine return

Chapter 6 Introduction to Defining Classes

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

Names, Scope, and Bindings

Program Representations

Runtime Environment. Part II May 8th Wednesday, May 8, 13

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Compiler Design

Semantic actions for declarations and expressions

Lecture Outline. COOL operational semantics. Operational Semantics of Cool. Motivation. Lecture 13. Notation. The rules. Evaluation Rules So Far

Syntax-Directed Translation Part I

The role of semantic analysis in a compiler

A programming language requires two major definitions A simple one pass compiler

Single-pass Static Semantic Check for Efficient Translation in YAPL

Imperative Paradigm. Syntax. Role of Programming Languages. Expressions. Expressions. Role of Programming Languages. Symbols.

Object-Oriented Programming

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

Data Abstraction. Hwansoo Han

1. (a) What are the closure properties of Regular sets? Explain. (b) Briefly explain the logical phases of a compiler model. [8+8]

Lecture 16: Static Semantics Overview 1

COMPILER DESIGN. Intermediate representations Introduction to code generation. COMP 442/6421 Compiler Design

Torben./Egidius Mogensen. Introduction. to Compiler Design. ^ Springer

ECE251 Midterm practice questions, Fall 2010

Chapter 10. Implementing Subprograms ISBN

PRINCIPLES OF COMPILER DESIGN UNIT I INTRODUCTION TO COMPILING

The Decaf Language. 1 Lexical considerations

4. An interpreter is a program that

CA Compiler Construction

LECTURE 3. Compiler Phases

Fundamentals of Programming Languages

+ Abstract Data Types

1 Lexical Considerations

5. Semantic Analysis. Mircea Lungu Oscar Nierstrasz

Transcription:

Intermediate Formats for object oriented languages

Program Representation Goals Enable Program Analysis and Transformation Semantic Checks, Correctness Checks, Optimizations Structure Translation to Machine Code Sequence of Steps Parse Tree Semantic Analysis High Level Intermediate Representation Low Level Intermediate Representation Machine Code

High Level IR Preserves Object Structure Preserves Structured Flow of Control Primary Goal: Analyze Program Low Level IR Moves Data Model to Flat Address Space Eliminates Structured Control Flow Suitable for Low Level Compilation Tasks Register Allocation Instruction Selection

Examples of Object Representation and Program Execution (This happens when program runs)

Example Vector Class class vector { } int v[ ]; void add(int x) { int i; i = 0; while (i < v.length) { v[i] = v[i]+x; i = i+1; } }

Representing Arrays Items Stored Contiguously In Memory Length Stored In First Word Color Code 3 7 4 8 Red - generated by compiler automatically Blue, Yellow, Lavender - program data or code Magenta - executing code or data

Representing Vector Objects First Word Points to Class Information Method Table, Garbage Collector Data Next Words Have Object Fields For vectors, Next Word is Reference to Array Class Info 3 7 4 8

Invoking Vector Add Method vect.add(1); Create Activation Record Class Info 3 7 4 8

Invoking Vector Add Method vect.add(1); Create Activation Record this onto stack this Class Info 3 7 4 8

Invoking Vector Add Method vect.add(1); Create Activation Record this onto stack parameters onto stack this 1 x Class Info 3 7 4 8

Invoking Vector Add Method vect.add(1); Create Activation Record this onto stack parameters onto stack space for locals on stack this 1 x i Class Info 3 7 4 8

Executing Vector Add Method void add(int x) { int i; i = 0; while (i < v.length) v[i] = v[i]+x; i = i+1; } Class Info this 1 x i 3 7 4 8

Executing Vector Add Method void add(int x) { int i; i = 0; while (i < v.length) v[i] = v[i]+x; i = i+1; } Class Info 1 0 this x i 3 7 4 8

Executing Vector Add Method void add(int x) { int i; i = 0; while (i < v.length) v[i] = v[i]+x; i = i+1; } Class Info 1 0 this x i 3 7 4 8

Executing Vector Add Method void add(int x) { int i; i = 0; while (i < v.length) v[i] = v[i]+x; i = i+1; } Class Info 1 0 this x i 3 7 4 8

Executing Vector Add Method void add(int x) { int i; i = 0; while (i < v.length) v[i] = v[i]+x; i = i+1; } Class Info 1 0 this x i 3 7 4 8

Executing Vector Add Method void add(int x) { int i; i = 0; while (i < v.length) v[i] = v[i]+x; i = i+1; } Class Info 1 0 this x i 3 7 4 8

Executing Vector Add Method void add(int x) { int i; i = 0; while (i < v.length) v[i] = v[i]+x; i = i+1; } Class Info 1 0 this x i 3 7 4 8

Executing Vector Add Method void add(int x) { int i; i = 0; while (i < v.length) v[i] = v[i]+x; i = i+1; } Class Info 1 0 this x i 3 7 4 8

Executing Vector Add Method void add(int x) { int i; i = 0; while (i < v.length) v[i] = v[i]+x; i = i+1; } Class Info 1 0 this x i 3 7 4 8

Executing Vector Add Method void add(int x) { int i; i = 0; while (i < v.length) v[i] = v[i]+x; i = i+1; } Class Info 1 0 this x i 3 7 4 8

Executing Vector Add Method void add(int x) { int i; i = 0; while (i < v.length) v[i] = v[i]+x; i = i+1; } Class Info 1 0 this x i 3 8 4 8

Executing Vector Add Method void add(int x) { int i; i = 0; while (i < v.length) v[i] = v[i]+x; i = i+1; } Class Info 1 0 this x i 3 8 4 8

Executing Vector Add Method void add(int x) { int i; i = 0; while (i < v.length) v[i] = v[i]+x; i = i+1; } Class Info 1 1 this x i 3 8 4 8

Executing Vector Add Method void add(int x) { int i; i = 0; while (i < v.length) v[i] = v[i]+x; i = i+1; } Class Info 1 3 this x i 3 8 5 9

What does the compiler have to do to make all of this work?

Compilation Tasks Determine Format of Objects and Arrays Determine Format of Call Stack Generate Code to Read Values this, parameters, locals, array elements, object fields Generate Code to Evaluate Expressions Generate Code to Write Values Generate Code for Control Constructs

Compilation Tasks Determine Object Format in Memory Fields from Parent Classes Fields from Current Class Generate Code for Methods Field, Local Variable and Parameter Accesses Method Invocations

Symbol Tables - Key Concept in Compilation Compiler Uses Symbol Tables to Produce Object Layout in Memory Code to Access Object Fields Access Local Variables Access Parameters Invoke Methods

Symbol Tables During Translation From Parse Tree to IR Symbol Tables Map Identifiers (strings) to Descriptors (information about identifiers) Basic Operation: Lookup Given A String, find Descriptor Typical Implementation: Hash Table Examples Given a class name, find class descriptor Given variable name, find descriptor local descriptor, parameter descriptor, field descriptor

Hierarchy In Symbol Tables Hierarchy Comes From Nested Scopes - Local Scope Inside Field Scope Inheritance - Child Class Inside Parent Class Symbol Table Hierarchy Reflects These Hierarchies Lookup Proceeds Up Hierarchy Until Descriptor is Found

Hierarchy in vector add Method Symbol Table for Fields of vector Class v Symbol Table for Parameters of add descriptor for field v Symbol Table for Locals of add i x this descriptor for parameter x descriptor for this descriptor for local i

Lookup In vector Example v[i] = v[i]+x; v descriptor for field v x this descriptor for parameter x descriptor for this i descriptor for local i

Lookup i In vector Example v[i] = v[i]+x; v descriptor for field v x this descriptor for parameter x descriptor for this i descriptor for local i

Lookup i In vector Example v[i] = v[i]+x; v descriptor for field v x this descriptor for parameter x descriptor for this i descriptor for local i

Lookup x In vector Example v[i] = v[i]+x; v descriptor for field v x this descriptor for parameter x descriptor for this i descriptor for local i

Lookup x In vector Example v[i] = v[i]+x; v descriptor for field v x this descriptor for parameter x descriptor for this i descriptor for local i

Lookup x In vector Example v[i] = v[i]+x; v descriptor for field v x this descriptor for parameter x descriptor for this i descriptor for local i

Descriptors What do descriptors contain? Information used for code generation and semantic analysis local descriptors - name, type, stack offset field descriptors - name, type, object offset method descriptors signature (type of return value, receiver, and parameters) reference to local symbol table reference to code for method

Program Symbol Table Maps class names to class descriptors Typical Implementation: Hash Table vector point cartesianpoint polarpoint class descriptor for vector class descriptor for point class descriptor for cartesianpoint class descriptor for polarpoint

Class Descriptor Has Two Symbol Tables Symbol Table for Methods Parent Symbol Table is Symbol Table for Methods of Parent Class Symbol Table for Fields Parent Symbol Table is Symbol Table for Fields of Parent Class Reference to Descriptor of Parent Class

Field, Parameter and Local and Type Descriptors Field, Parameter and Local Descriptors Refer to Type Descriptors Base type descriptor: int, boolean Array type descriptor, which contains reference to type descriptor for array elements Class descriptor Relatively Simple Type Descriptors Base Type Descriptors and Array Descriptors Stored in Type Symbol Table

Example Type Symbol Table int int descriptor int [] array descriptor boolean boolean descriptor boolean [] array descriptor vector [] array descriptor class descriptor vector for vector

Method Descriptors Contain Reference to Code for Method Contain Reference to Local Symbol Table for Local Variables of Method Parent Symbol Table of Local Symbol Table is Parameter Symbol Table for Parameters of Method

Method Descriptor for add Method Method descriptor for add parameter symbol table x this local variable symbol table i code for add method field symbol table for vector class parameter descriptor this descriptor local descriptor

Symbol Table Summary Program Symbol Table (Class Descriptors) Class Descriptors Field Symbol Table (Field Descriptors) Field Symbol Table for SuperClass Method Symbol Table (Method Descriptors) Method Symbol Table for Superclass Method Descriptors Local Variable Symbol Table (Local Variable Descriptors) Parameter Symbol Table (Parameter Descriptors) Field Symbol Table of Receiver Class Local, Parameter and Field Descriptors Type Descriptors in Type Symbol Table or Class Descriptors

class descriptor for vector class_decl vector field_decl int v []

v field symbol table field descriptor class descriptor for vector class_decl vector field_decl int v []

class descriptor for vector v field symbol table field descriptor x this parameter symbol table parameter descriptor this descriptor class_decl vector field_decl int v []

class descriptor for vector v field symbol table field descriptor x this parameter symbol table parameter descriptor this descriptor i local symbol table local descriptor class_decl vector field_decl int v []

class descriptor for vector method descriptor for add v add method symbol table field symbol table field descriptor x this i local symbol table code for add method parameter symbol table parameter descriptor this descriptor local descriptor class_decl vector field_decl int v []

class descriptor for vector method descriptor for add v add method symbol table field symbol table field descriptor x this i local symbol table code for add method parameter symbol table parameter descriptor this descriptor local descriptor int int [] boolean boolean [] vector [] int descriptor array descriptor boolean descriptor array descriptor array descriptor class_decl vector field_decl int v []

class descriptor for vector method descriptor for add type symbol table int int [] boolean boolean [] vector [] v add method symbol table field symbol table field descriptor x this i local symbol table code for add method int descriptor array descriptor boolean descriptor array descriptor array descriptor parameter symbol table parameter descriptor this descriptor local descriptor vector class_decl field_decl int v []

Representing Code in High-Level Intermediate Representation

Basic Idea Move towards assembly language Preserve high-level structure object format structured control flow distinction between parameters, locals and fields High-level abstractions of assembly language load and store nodes access abstract locals, parameters and fields, not memory locations directly

What is a Parse Tree? Parse Tree Records Results of Parse External nodes are terminals/tokens Internal nodes are non-terminals class_decl::= class name { field_decl method_decl } field_decl::= int name []; method_decl::= void name ( param_decl ) { var_decl stats }

Abstract Versus Concrete Trees Remember grammar hacks left factoring, ambuguity elimination, precedence of binary operators Hacks lead to a tree that may not reflect cleanest interpretation of program May be more convenient to work with abstract syntax tree (roughly, parse tree from grammar before hacks)

Building IR Alternatives Build concrete parse tree in parser, translate to abstract syntax tree, translate to IR Build abstract syntax tree in parser, translate to IR Roll IR construction into parsing

FromAbstract Syntax Trees to Symbol Tables Recursively Traverse Tree Build Up Symbol Tables As Traversal Visits Nodes

Representing Expressions Expression Trees Represent Expressions Internal Nodes - Operations like +, -, etc. Leaves - Load Nodes Represent Variable Accesses Load Nodes ldf node for field accesses - field descriptor (implicitly accesses this - could add a reference to accessed object) ldl node for local variable accesses - local descriptor ldp node for parameter accesses - parameter descriptor lda node for array accesses expression tree for array expression tree for index

Example x*x + y*y + * * ldf ldf ldf ldf field descriptor for x in field symbol table for cartesianpoint class field descriptor for y in field symbol table for cartesianpoint class

Example v[i]+x + ldf lda field descriptor for v in field symbol table for vector class ldl local descriptor for i in local symbol table of vector add ldp parameter descriptor for x in parameter symbol table of vector add

Special Case: Array Length Operator len node represents length of array expression tree for array Example: v.length len ldf field descriptor for v in field symbol table for vector class

Representing Assignment Statements Store Nodes stf for stores to fields field descriptor expression tree for stored value stl for stores to local variables local descriptor expression tree for stored value sta for stores to array elements expression tree for array expression tree for index expression tree for stored value

Representing Procedure Calls Call statement Refers to method descriptor for invoked method Has list of parameters (this is first parameter) vect.add(1) call method descriptor for add in method symbol table for vector class ldl constant local descriptor for vect in local symbol table of method containing the call statement vect.add(1) 1

Example sta v[i]=v[i]+x ldf ldl + lda field descriptor for v in field symbol table for vector class ldl local descriptor for i in local symbol table of vector add ldp parameter descriptor for x in parameter symbol table of vector add

Representing Flow of Control Statement Nodes sequence node - first statement, next statement if node expression tree for condition then statement node and else statement node while node expression tree for condition statement node for loop body return node expression tree for return value

Example while while (i < v.length) v[i] = v[i]+x; ldl < len ldf ldf sta + ldl lda ldf ldl ldp field descriptor for v local descriptor for i parameter descriptor for x

Translating from Abstract Syntax Trees to Symbol Tables

Example Abstract Syntax Tree class vector { int v[]; } void add(int x) { int i; i = 0; } while (i < v.length) { v[i] = v[i]+x; i = i+1; } class_decl vector field_decl method_decl statements int v add param_decl var_decl int x int i

class_decl vector field_decl method_decl statements class symbol table int v add param_decl var_decl int x int i

class_decl vector field_decl method_decl statements vector class symbol table int v add param_decl var_decl int x int i class descriptor for vector

class_decl vector field_decl method_decl statements vector class symbol table int v add param_decl var_decl int x int i v field descriptor class descriptor for vector

class_decl vector field_decl method_decl statements vector class symbol table int v add param_decl var_decl int x int i v field descriptor class descriptor for vector add this this descriptor Method descriptor for add

class_decl vector field_decl method_decl statements vector class symbol table int v add param_decl var_decl int x int i v field descriptor class descriptor for vector add x this parameter descriptor this descriptor Method descriptor for add

class_decl vector field_decl method_decl statements vector class symbol table int v add param_decl var_decl int x int i v field descriptor class descriptor for vector add x this parameter descriptor this descriptor Method descriptor for add i local descriptor

From Abstract Syntax Trees to Intermediate Representation

while (i < v.length) v[i] = v[i]+x; field descriptor for v local descriptor for i parameter descriptor for x

while (i < v.length) v[i] = v[i]+x; ldl field descriptor for v local descriptor for i parameter descriptor for x

while (i < v.length) v[i] = v[i]+x; ldl ldf field descriptor for v local descriptor for i parameter descriptor for x

while (i < v.length) v[i] = v[i]+x; ldl len ldf field descriptor for v local descriptor for i parameter descriptor for x

while (i < v.length) v[i] = v[i]+x; < ldl len ldf field descriptor for v local descriptor for i parameter descriptor for x

while (i < v.length) v[i] = v[i]+x; < ldl len ldf ldf field descriptor for v local descriptor for i parameter descriptor for x

while (i < v.length) v[i] = v[i]+x; < ldl len ldf ldf ldl field descriptor for v local descriptor for i parameter descriptor for x

while (i < v.length) v[i] = v[i]+x; < ldl len ldf ldf lda ldl field descriptor for v local descriptor for i parameter descriptor for x

while (i < v.length) v[i] = v[i]+x; < ldl len ldf ldf lda ldl ldp field descriptor for v local descriptor for i parameter descriptor for x

while (i < v.length) v[i] = v[i]+x; < + ldl len ldf lda ldf ldl ldp field descriptor for v local descriptor for i parameter descriptor for x

while (i < v.length) v[i] = v[i]+x; ldl < len ldf ldf + lda ldf ldl ldp field descriptor for v local descriptor for i parameter descriptor for x

while (i < v.length) v[i] = v[i]+x; ldl < len ldf ldf + ldl lda ldf ldl ldp field descriptor for v local descriptor for i parameter descriptor for x

while (i < v.length) v[i] = v[i]+x; ldl < len ldf ldf sta + ldl lda ldf ldl ldp field descriptor for v local descriptor for i parameter descriptor for x

while while (i < v.length) v[i] = v[i]+x; ldl < len ldf ldf sta + ldl lda ldf ldl ldp field descriptor for v local descriptor for i parameter descriptor for x

while while (i < v.length) v[i] = v[i]+x; ldl < len ldf ldf sta + ldl lda ldf ldl ldp field descriptor for v local descriptor for i parameter descriptor for x

Abbreviated Notation < ldl i while len ldf v ldf v sta + ldl i lda ldp x ldf v ldl i while (i < v.length) v[i] = v[i]+x;

From Abstract Syntax Trees to IR Recursively Traverse Abstract Syntax Tree Build Up Representation Bottom-Up Manner Look Up Variable Identifiers in Symbol Tables Build Load Nodes to Access Variables Build Expressions Out of Load Nodes and Operator Nodes Build Store Nodes for Assignment Statements Combine Store Nodes with Flow of Control Nodes

Summary High-Level Intermediate Representation Goal: represent program in an intuitive way that supports future compilation tasks Representing program data Symbol tables Hierarchical organization Representing computation Expression trees Various types of load and store nodes Structured flow of control Traverse abstract syntax tree to build IR

class_decl vector field_decl method_decl statements vector class symbol table int v add param_decl var_decl int x int i v field descriptor class descriptor for vector add x this parameter descriptor this descriptor Method descriptor for add i code for add method local descriptor

Eliminating Parse Tree Construction Parser actions build symbol tables Reduce actions build tables in bottom-up fashion Actions correspond to activities that take place in top-down fashion in parse tree traversal Eliminates intermediate construction of parse tree - improves performance Also less code to write (but code may be harder to write than if just traverse parse tree)

class symbol table class vector { int v[]; void add(int x) { int i;... }}

class vector { int v[]; void add(int x) { int i;... }} field_decl class symbol table int v field descriptor

class vector { int v[]; void add(int x) { int i;... }} field_decl class symbol table int v param_decl int x field descriptor parameter descriptor

class vector { int v[]; void add(int x) { int i;... }} field_decl class symbol table int v param_decl int x var_decl int i field descriptor parameter descriptor local descriptor

class vector { int v[]; void add(int x) { int i;... }} field_decl statements class symbol table int v param_decl int x var_decl int i field descriptor parameter descriptor code for add method local descriptor

class vector { int v[]; void add(int x) { int i;... }} field_decl method_decl statements class symbol table int v add param_decl int x var_decl int i field descriptor x this parameter descriptor this descriptor Method descriptor for add i code for add method local descriptor

class vector { int v[]; void add(int x) { int i;... }} field_decl method_decl statements class symbol table int v add param_decl int x var_decl int i v field descriptor class descriptor for vector add x this parameter descriptor this descriptor Method descriptor for add i code for add method local descriptor

Nested Scopes So far, have seen several kinds of nesting Method symbol tables nested inside class symbol tables Local symbol tables nesting inside method symbol tables Nesting disambiguates potential name clashes Same name used for class field and local variable Name refers to local variable inside method

Nested Code Scopes Symbol tables can be nested arbitrarily deeply with code nesting: class bar { } baz x; int foo(int x) { double x = 5.0; { float x = 10.0; { int x = 1;... x...} }... x...... x... Note: Name clashes with nesting can reflect programming error. Compilers often generate warning messages if it occurs.

Traversing Class Declarations Extract Class Name and Superclass Name Create Class Descriptor (field and method symbol tables), Put Descriptor Into Class Symbol Table Put Array Descriptor Into Type Symbol Table Lookup Superclass Name in Class Symbol Table, Make Superclass Link in Class Descriptor Point to Retrieved Class Descriptor Traverse Field Declarations to Fill Up Field Symbol Table Traverse Method Declarations to Fill Up Method Symbol Table

Further Complication - Inheritance Object Extension

Inheritance Example - Point Class class point { int c; int getcolor() { return(c); } int distance() { return(0); } }

Point Subclasses class cartesianpoint extends point{ int x, y; int distance() { return(x*x + y*y); } } class polarpoint extends point { int r, t; int distance() { return(r*r); } int angle() { return(t); } }

Implementing Object Fields Each object is a contiguous piece of memory Fields from inheritance hierarchy allocated sequentially in piece of memory Example: polarpoint object c r t 2 1 2 Class Info polarpoint

c 2 Point Objects Class Info point c x y 1 4 6 Class Info cartesianpoint c r t 4 1 3 Class Info polarpoint

Class Descriptors for point and class descriptor for point cartesianpoint c getcolor distance field descriptor for c method descriptor for getcolor method descriptor for distance x y field descriptor for x field descriptor for y class descriptor for cartesianpoint distance method descriptor for distance

Dynamic Dispatch if (x == 0) { p = new point(); } else if (x < 0) { p = new cartesianpoint(); } else if (x > 0) { } p = new polarpoint(); y = p.distance(); Which distance method is invoked? if p is a point return(0) if p is a cartesianpoint return(x*x + y*y) if p is a polarpoint return(r*r) Invoked Method Depends on Type of Receiver!

Implementing Dynamic Dispatch Basic Mechanism: Method Table method table for point objects getcolor method for point distance method for point method table for cartesianpoint objects method table for polarpoint objects getcolor method for point distance method for cartesianpoint getcolor method for point distance method for polarpoint angle method for polarpoint

Invoking Methods Compiler Numbers Methods In Each Inheritance Hierarchy getcolor is Method 0, distance is Method 1, angle is Method 2 Method Invocation Sites Access Corresponding Entry in Method Table Works For Single Inheritance Only not for multiple inheritance, multiple dispatch, or interfaces

Hierarchy in Method Symbol Tables for Points getcolor distance method descriptor for getcolor method descriptor for distance distance distance angle method descriptor for distance method descriptor for distance method descriptor for angle

Lookup In Method Symbol Tables Starts with method table of declared class of receiver object Goes up class hierarchy until method found point p; p = new point(); p.distance(); finds distance in point method symbol table point p; p = new cartesianpoint(); p.distance(); finds distance in point method symbol table cartesianpoint p; p = new cartesianpoint(); p.getcolor(); finds getcolor in point method symbol table

Static Versus Dynamic Lookup Static lookup done at compile time for type checking and code generation Dynamic lookup done when program runs to dispatch method call Static and dynamic lookup results may differ! point p; p = new cartesianpoint(); p.distance(); Static lookup finds distance in point method table Dynamic lookup invokes distance in cartesianpoint class Dynamic dispatch mechanism used to make this happen

Static and Dynamic Tables Static Method Symbol Table Used to look up method definitions at compile time Index is method name Lookup starts at method symbol table determined by declared type of receiver object Lookup may traverse multiple symbol tables Dynamic Method Table Used to look up method to invoke at run time Index is method number Lookup simply accesses a single table element

getcolor method for point distance method for point getcolor method for point distance method for cartesianpoint getcolor method for point distance method for polarpoint angle method for polarpoint distance getcolor distance method descriptor for distance distance angle method descriptor for getcolor method descriptor for distance method descriptor for distance method descriptor for angle