Three-Address Code IR

Similar documents
IR Generation. May 13, Monday, May 13, 13

IR Optimization. May 15th, Tuesday, May 14, 13

INTERMEDIATE REPRESENTATIONS RTL EXAMPLE

Fall Compiler Principles Lecture 6: Intermediate Representation. Roman Manevich Ben-Gurion University of the Negev

Announcements. My office hours are today in Gates 160 from 1PM-3PM. Programming Project 3 checkpoint due tomorrow night at 11:59PM.

Fall Compiler Principles Lecture 5: Intermediate Representation. Roman Manevich Ben-Gurion University of the Negev

We can emit stack-machine-style code for expressions via recursion

Code Generation. The Main Idea of Today s Lecture. We can emit stack-machine-style code for expressions via recursion. Lecture Outline.

Code Generation. Lecture 12

Code Generation. Lecture 19

Course Administration

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

COMP 303 Computer Architecture Lecture 3. Comp 303 Computer Architecture

MIPS Programming. A basic rule is: try to be mechanical (that is, don't be "tricky") when you translate high-level code into assembler code.

Intermediate Code Generation

Lecture Outline. Topic 1: Basic Code Generation. Code Generation. Lecture 12. Topic 2: Code Generation for Objects. Simulating a Stack Machine

Lectures 5. Announcements: Today: Oops in Strings/pointers (example from last time) Functions in MIPS

Computer Architecture

G Programming Languages - Fall 2012

Project Compiler. CS031 TA Help Session November 28, 2011

Compilation /15a Lecture 7. Activation Records Noam Rinetzky

CS 2210 Programming Project (Part IV)

Machine Language Instructions Introduction. Instructions Words of a language understood by machine. Instruction set Vocabulary of the machine

Compilers and computer architecture: A realistic compiler to MIPS

CMPT 379 Compilers. Anoop Sarkar. 11/13/07 1. TAC: Intermediate Representation. Language + Machine Independent TAC

Implementing Subroutines. Outline [1]

CA Compiler Construction

6.035 Project 3: Unoptimized Code Generation. Jason Ansel MIT - CSAIL

CS 164, Midterm #2, Spring O, M, C - e1 : Bool O, M, C - e2 : t2 O, M, C - e2 : T3 O, M, C - if e1 then e2 else e3 fi : T2 _ T3

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

Module 27 Switch-case statements and Run-time storage management

Branch Addressing. Jump Addressing. Target Addressing Example. The University of Adelaide, School of Computer Science 28 September 2015

Implementing Procedure Calls

Compilation Lecture 6: Attribute Grammars IR Noam Rinetzky

CS143 Handout 25 Summer 2012 August 6 th, 2011 Programming Project 4: TAC Generation

ECE232: Hardware Organization and Design

Programming Assignment IV Due Thursday, November 18th, 2010 at 11:59 PM

Lecture 7: Procedures and Program Execution Preview

Topic 7: Activation Records

Subroutines. int main() { int i, j; i = 5; j = celtokel(i); i = j; return 0;}

Lecture 5. Announcements: Today: Finish up functions in MIPS

Runtime management. CS Compiler Design. The procedure abstraction. The procedure abstraction. Runtime management. V.

CS143 - Written Assignment 4 Reference Solutions

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

Code Generation Super Lectures

Functions in MIPS. Functions in MIPS 1

Where We Are. Lexical Analysis. Syntax Analysis. IR Generation. IR Optimization. Code Generation. Machine Code. Optimization.

MIPS Procedure Calls. Lecture 6 CS301

Runtime Environments, Part II

Lexical Considerations

Run-time Environment

Midterm II CS164, Spring 2006

CS153: Compilers Lecture 8: Compiling Calls

What the CPU Sees Basic Flow Control Conditional Flow Control Structured Flow Control Functions and Scope. C Flow Control.

The remote testing experiment. It works! Code Generation. Lecture 12. Remote testing. From the cs164 newsgroup

CS61C Machine Structures. Lecture 12 - MIPS Procedures II & Logical Ops. 2/13/2006 John Wawrzynek. www-inst.eecs.berkeley.

CS 6353 Compiler Construction Project Assignments

Semantic actions for declarations and expressions

Compilers. Intermediate representations and code generation. Yannis Smaragdakis, U. Athens (original slides by Sam

ECE 331 Hardware Organization and Design. Professor Jay Taneja UMass ECE - Discussion 3 2/8/2018

CS143 Compilers - Written Assignment 4

Chapter 2. Computer Abstractions and Technology. Lesson 4: MIPS (cont )

Plan. Regression testing: Demo of how to use the regress.sh script.

CSE 401/M501 Compilers

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

CS 4110 Programming Languages & Logics. Lecture 35 Typed Assembly Language

SPIM Procedure Calls

Run-time Environments

CS61C : Machine Structures

COL728 Minor2 Exam Compiler Design Sem II, Answer all 5 questions Max. Marks: 20

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

Run-time Environments

Semantic actions for expressions

Lecture08: Scope and Lexical Address

Do-While Example. In C++ In assembly language. do { z--; while (a == b); z = b; loop: addi $s2, $s2, -1 beq $s0, $s1, loop or $s2, $s1, $zero

CS 432 Fall Mike Lam, Professor. Code Generation

Semantic actions for declarations and expressions

Operational Semantics of Cool

ECE260: Fundamentals of Computer Engineering. Supporting Procedures in Computer Hardware

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

Code Generation. Dragon: Ch (Just part of it) Holub: Ch 6.

Control Abstraction. Hwansoo Han

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

Type Checking Binary Operators

Functions and Procedures

1 Lexical Considerations

Run-time Environments. Lecture 13. Prof. Alex Aiken Original Slides (Modified by Prof. Vijay Ganesh) Lecture 13

Intermediate Representa.on

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

Lecture #6 Intro MIPS; Load & Store

Announcements. Class 7: Intro to SRC Simulator Procedure Calls HLL -> Assembly. Agenda. SRC Procedure Calls. SRC Memory Layout. High Level Program

Principle of Compilers Lecture VIII: Intermediate Code Generation. Alessandro Artale

Separate compilation. Topic 6: Runtime Environments p.1/21. CS 526 Topic 6: Runtime Environments The linkage convention

CSc 453 Interpreters & Interpretation

Lecture Outline. Code Generation. Lecture 30. Example of a Stack Machine Program. Stack Machines

CS61C : Machine Structures

MIPS (SPIM) Assembler Syntax

Programming Assignment IV Due Thursday, June 1, 2017 at 11:59pm

Chapter 10 Implementing Subprograms

Short Notes of CS201

Transcription:

Three-Address Code IR

Announcements Programming Project 3 due tonight at 11:59PM. OH today after lecture. Ask questions on Piazzza! Ask questions via email! Programming Project 4 out, due Wednesday, August 10 at 11:59PM Can use at most four late days on this assignment (due to grading deadlines) Start early; this one is large!

Where We Are Source Code Lexical Analysis Syntax Analysis Semantic Analysis IR Generation IR Optimization Code Generation Optimization Machine Code

Overview for Today The Final Assignment Introduction to TAC: TAC for simple expressions. TAC for functions and function calls. TAC for objects. TAC for arrays. Generating TAC. A few low-level details.

The Final Assignment Goal: Generate TAC IR for Decaf programs. We provide a code generator to produce MIPS assembly. You can run your programs using spim, the MIPS simulator. You must also take care of some low-level details: Assign all parameters, local variables, and temporaries positions in a stack frame. Assign all global variables positions in the global memory segment. Assign all fields in a class an offset from the base of the object. You should not need to know MIPS to do this; all details will be covered in lecture. If you have any questions on MIPS, please feel to ask!

An Important Detail When generating IR at this level, you do not need to worry about optimizing it. It's okay to generate IR that has lots of unnecessary assignments, redundant computations, etc. We'll see how to optimize IR code later this week and at the start of next week. It's tricky, but extremely cool!

Three-Address Code Or TAC The IR that you will be using for the final programming project. High-level assembly where each operation has at most three operands. Uses explicit runtime stack for function calls. Uses vtables for dynamic dispatch.

Sample TAC Code int x; int y; int x2 = x * x; int y2 = y * y; int r2 = x2 + y2;

Sample TAC Code int x; int y; int x2 = x * x; int y2 = y * y; int r2 = x2 + y2; x2 = x * x; y2 = y * y; r2 = x2 + y2;

Sample TAC Code int a; int b; int c; int d; a = b + c + d; b = a * a + b * b;

Sample TAC Code int a; int b; int c; int d; a = b + c + d; b = a * a + b * b; _t0 = b + c; a = _t0 + d; _t1 = a * a; _t2 = b * b; b = _t1 + _t2;

Sample TAC Code int a; int b; int c; int d; a = b + c + d; b = a * a + b * b; _t0 = b + c; a = _t0 + d; _t1 = a * a; _t2 = b * b; b = _t1 + _t2;

Temporary Variables The three in three-address code refers to the number of operands in any instruction. Evaluating an expression with more than three subexpressions requires the introduction of temporary variables. This is actually a lot easier than you might think; we'll see how to do it later on.

Sample TAC Code int a; int b; a = 5 + 2 * b;

Sample TAC Code int a; int b; a = 5 + 2 * b; _t0 = 5; _t1 = 2 * b; a = _t0 + _t1;

Sample TAC Code TAC allows for instructions with two operands. int a; int b; a = 5 + 2 * b; _t0 = 5; _t1 = 2 * b; a = _t0 + _t1;

Simple TAC Instructions Variable assignment allows assignments of the form var = constant; var 1 = var 2 ; var 1 = var 2 op var 3 ; var 1 = constant op var 2 ; var 1 = var 2 op constant; var = constant 1 op constant 2 ; Permitted operators are +, -, *, /, %. How would you compile y = -x;?

Simple TAC Instructions Variable assignment allows assignments of the form var = constant; var 1 = var 2 ; var 1 = var 2 op var 3 ; var 1 = constant op var 2 ; var 1 = var 2 op constant; var = constant 1 op constant 2 ; Permitted operators are +, -, *, /, %. How would you compile y = -x;? y = 0 x;

One More with bools int x; int y; bool b1; bool b2; bool b3; b1 = x + x < y b2 = x + x == y b3 = x + x > y

One More with bools int x; int y; bool b1; bool b2; bool b3; b1 = x + x < y b2 = x + x == y b3 = x + x > y _t0 = x + x; _t1 = y; b1 = _t0 < _t1; _t2 = x + x; _t3 = y; b2 = _t2 == _t3; _t4 = x + x; _t5 = y; b3 = _t5 < _t4;

TAC with bools Boolean variables are represented as integers that have zero or nonzero values. In addition to the arithmetic operator, TAC supports <, ==,, and &&. How might you compile b = (x <= y)?

TAC with bools Boolean variables are represented as integers that have zero or nonzero values. In addition to the arithmetic operator, TAC supports <, ==,, and &&. How might you compile b = (x <= y)? _t0 = x < y; _t1 = x == y; b = _t0 _t1;

Control Flow Statements int x; int y; int z; if (x < y) z = x; else z = y; z = z * z;

Control Flow Statements int x; int y; int z; if (x < y) z = x; else z = y; z = z * z; _t0 = x < y; IfZ _t0 Goto _L0; z = x; Goto _L1; _L0: z = y; _L1: z = z * z;

Control Flow Statements int x; int y; int z; if (x < y) z = x; else z = y; z = z * z; _t0 = x < y; IfZ _t0 Goto _L0; z = x; Goto _L1; _L0: z = y; _L1: z = z * z;

Control Flow Statements int x; int y; int z; if (x < y) z = x; else z = y; z = z * z; _t0 = x < y; IfZ _t0 Goto _L0; z = x; Goto _L1; _L0: z = y; _L1: z = z * z;

Labels TAC allows for named labels indicating particular points in the code that can be jumped to. There are two control flow instructions: Goto label; IfZ value Goto label; Note that IfZ is always paired with Goto.

Control Flow Statements int x; int y; while (x < y) { x = x * 2; y = x;

Control Flow Statements int x; int y; while (x < y) { x = x * 2; y = x; _L0: _t0 = x < y; IfZ _t0 Goto _L1; x = x * 2; Goto _L0; _L1: y = x;

A Complete Decaf Program void main() { int x, y; int m2 = x * x + y * y; while (m2 > 5) { m2 = m2 x;

A Complete Decaf Program void main() { int x, y; int m2 = x * x + y * y; while (m2 > 5) { m2 = m2 x; main: BeginFunc 24; _t0 = x * x; _t1 = y * y; m2 = _t0 + _t1; _L0: _t2 = 5 < m2; IfZ _t2 Goto _L1; m2 = m2 x; Goto _L0; _L1: EndFunc;

A Complete Decaf Program void main() { int x, y; int m2 = x * x + y * y; while (m2 > 5) { m2 = m2 x; main: BeginFunc 24; _t0 = x * x; _t1 = y * y; m2 = _t0 + _t1; _L0: _t2 = 5 < m2; IfZ _t2 Goto _L1; m2 = m2 x; Goto _L0; _L1: EndFunc;

A Complete Decaf Program void main() { int x, y; int m2 = x * x + y * y; while (m2 > 5) { m2 = m2 x; main: BeginFunc 24; _t0 = x * x; _t1 = y * y; m2 = _t0 + _t1; _L0: _t2 = 5 < m2; IfZ _t2 Goto _L1; m2 = m2 x; Goto _L0; _L1: EndFunc;

A Complete Decaf Program void main() { int x, y; int m2 = x * x + y * y; while (m2 > 5) { m2 = m2 x; main: BeginFunc 24; _t0 = x * x; _t1 = y * y; m2 = _t0 + _t1; _L0: _t2 = 5 < m2; IfZ _t2 Goto _L1; m2 = m2 x; Goto _L0; _L1: EndFunc;

Compiling Functions Decaf functions consist of four pieces: A label identifying the start of the function. (Why?) A BeginFunc N; instruction reserving N bytes of space for locals and temporaries. The body of the function. An EndFunc; instruction marking the end of the function. When reached, cleans up stack frame and returns.

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Param N Param N 1... Param 1 Storage for Locals and Temporaries

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M Param 1

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M Param 1 Storage for Locals and Temporaries

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Stack frame for function g(a,, m) Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M Param 1 Storage for Locals and Temporaries

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M Param 1 Storage for Locals and Temporaries

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M Param 1

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Param N Param N 1... Param 1 Storage for Locals and Temporaries

Compiling Function Calls void SimpleFn(int z) { int x, y; x = x * y * z; void main() { SimpleFunction(137);

Compiling Function Calls void SimpleFn(int z) { int x, y; x = x * y * z; _SimpleFn: BeginFunc 16; _t0 = x * y; _t1 = _t0 * z; x = _t1; EndFunc; void main() { SimpleFunction(137);

Compiling Function Calls void SimpleFn(int z) { int x, y; x = x * y * z; _SimpleFn: BeginFunc 16; _t0 = x * y; _t1 = _t0 * z; x = _t1; EndFunc; void main() { SimpleFunction(137);

Compiling Function Calls void SimpleFn(int z) { int x, y; x = x * y * z; _SimpleFn: BeginFunc 16; _t0 = x * y; _t1 = _t0 * z; x = _t1; EndFunc; void main() { SimpleFunction(137);

Compiling Function Calls void SimpleFn(int z) { int x, y; x = x * y * z; void main() { SimpleFunction(137); _SimpleFn: BeginFunc 16; _t0 = x * y; _t1 = _t0 * z; x = _t1; EndFunc; main: BeginFunc 4; _t0 = 137; PushParam _t0; LCall _SimpleFn; PopParams 4; EndFunc;

Compiling Function Calls void SimpleFn(int z) { int x, y; x = x * y * z; void main() { SimpleFunction(137); _SimpleFn: BeginFunc 16; _t0 = x * y; _t1 = _t0 * z; x = _t1; EndFunc; main: BeginFunc 4; _t0 = 137; PushParam _t0; LCall _SimpleFn; PopParams 4; EndFunc;

Compiling Function Calls void SimpleFn(int z) { int x, y; x = x * y * z; void main() { SimpleFunction(137); _SimpleFn: BeginFunc 16; _t0 = x * y; _t1 = _t0 * z; x = _t1; EndFunc; main: BeginFunc 4; _t0 = 137; PushParam _t0; LCall _SimpleFn; PopParams 4; EndFunc;

Compiling Function Calls void SimpleFn(int z) { int x, y; x = x * y * z; void main() { SimpleFunction(137); _SimpleFn: BeginFunc 16; _t0 = x * y; _t1 = _t0 * z; x = _t1; EndFunc; main: BeginFunc 4; _t0 = 137; PushParam _t0; LCall _SimpleFn; PopParams 4; EndFunc;

Compiling Function Calls void SimpleFn(int z) { int x, y; x = x * y * z; void main() { SimpleFunction(137); _SimpleFn: BeginFunc 16; _t0 = x * y; _t1 = _t0 * z; x = _t1; EndFunc; main: BeginFunc 4; _t0 = 137; PushParam _t0; LCall _SimpleFn; PopParams 4; EndFunc;

Compiling Function Calls void SimpleFn(int z) { int x, y; x = x * y * z; void main() { SimpleFunction(137); _SimpleFn: BeginFunc 16; _t0 = x * y; _t1 = _t0 * z; x = _t1; EndFunc; main: BeginFunc 4; _t0 = 137; PushParam _t0; LCall _SimpleFn; PopParams 4; EndFunc;

Stack Management in TAC The BeginFunc N; instruction only needs to reserve room for local variables and temporaries. The EndFunc; instruction reclaims the room allocated with BeginFunc N; A single parameter is pushed onto the stack by the caller using the PushParam var instruction. Space for parameters is reclaimed by the caller using the PopParams N; instruction. n is measure in bytes, not number of arguments.

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Param N Param N 1... Param 1 Storage for Locals and Temporaries

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M PushParam var;

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M PushParam var; PushParam var;

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M Param 1 PushParam var; PushParam var; PushParam var;

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M Param 1 Storage for Locals and Temporaries PushParam var; PushParam var; PushParam var; BeginFunc N;

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Stack frame for function g(a,, m) Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M Param 1 Storage for Locals and Temporaries PushParam var; PushParam var; PushParam var; BeginFunc N;

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M Param 1 Storage for Locals and Temporaries

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M Param 1 Storage for Locals and Temporaries EndFunc;

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M Param 1

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M Param 1 PopParams N;

A Logical Decaf Stack Frame Stack frame for function f(a,, n) Param N Param N 1... Param 1 Storage for Locals and Temporaries

Storage Allocation As described so far, TAC does not specify where variables and temporaries are stored. For the final programming project, you will need to tell the code generator where each variable should be stored. This normally would be handled during code generation, but Just For Fun we thought you should have some experience handling this.

The Frame Pointer Param N Param N 1... Param 1 Storage for Locals and Temporaries

The Frame Pointer Param N Param N 1... Param 1 Storage for Locals and Temporaries Frame Pointer

The Frame Pointer Frame Pointer Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M Param 1

The Frame Pointer Frame Pointer Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M Param 1 Storage for Locals and Temporaries

The Frame Pointer Frame Pointer Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M Param 1 Storage for Locals and Temporaries

The Frame Pointer Frame Pointer Param N Param N 1... Param 1 Storage for Locals and Temporaries Param M Param 1

The Frame Pointer Param N Param N 1... Param 1 Storage for Locals and Temporaries Frame Pointer

The Frame Pointer Param N Param N 1... Param 1 Storage for Locals and Temporaries Frame Pointer

Logical vs Physical Stack Frames Param N Param N 1... Param 1 Storage for Locals and Temporaries

Logical vs Physical Stack Frames Param N Param N 1... Param 1 Storage for Locals and Temporaries Param N Param N 1... Param 1 fp of caller Storage for Locals and Temporaries

Logical vs Physical Stack Frames Param N Param N 1... Param 1 Storage for Locals and Temporaries Param N Param N 1... Param 1 fp of caller Storage for Locals and Temporaries Frame Pointer

(Mostly) Physical Stack Frames Param N... Param 1 fp of caller Storage for Locals and Temporaries Frame Pointer

(Mostly) Physical Stack Frames Frame Pointer Param N... Param 1 fp of caller Storage for Locals and Temporaries Param N... Param 1

(Mostly) Physical Stack Frames Frame Pointer Param N... Param 1 fp of caller Storage for Locals and Temporaries Param N... Param 1 fp of caller

(Mostly) Physical Stack Frames Frame Pointer Param N... Param 1 fp of caller Storage for Locals and Temporaries Param N... Param 1 fp of caller

(Mostly) Physical Stack Frames Frame Pointer Param N... Param 1 fp of caller Storage for Locals and Temporaries Param N... Param 1 fp of caller Storage for Locals and Temporaries

(Mostly) Physical Stack Frames Frame Pointer Param N... Param 1 fp of caller Storage for Locals and Temporaries Param N... Param 1 fp of caller

(Mostly) Physical Stack Frames Frame Pointer Param N... Param 1 fp of caller Storage for Locals and Temporaries Param N... Param 1 fp of caller

(Mostly) Physical Stack Frames Frame Pointer Param N... Param 1 fp of caller Storage for Locals and Temporaries Param N... Param 1

(Mostly) Physical Stack Frames Param N... Param 1 fp of caller Storage for Locals and Temporaries Frame Pointer

The Stored Return Address Internally, the processor has a special register called the program counter (PC) that stores the address of the next instruction to execute. Whenever a function returns, it needs to restore the PC so that the calling function resumes execution where it left off. The address of where to return is stored in MIPS in a special register called ra ( return address. ) Whenever a MIPS function makes its own function call, it must store its cached return address so that it can replace it with the current PC.

Physical Stack Frames Param N... Param 1 fp of caller ra of caller Locals and Temporaries Frame Pointer

Physical Stack Frames Frame Pointer Param N... Param 1 fp of caller ra of caller Locals and Temporaries Param N... Param 1

Physical Stack Frames Frame Pointer Param N... Param 1 fp of caller ra of caller Locals and Temporaries Param N... Param 1 fp of caller

Physical Stack Frames Frame Pointer Param N... Param 1 fp of caller ra of caller Locals and Temporaries Param N... Param 1 fp of caller ra of caller

Physical Stack Frames Frame Pointer Param N... Param 1 fp of caller ra of caller Locals and Temporaries Param N... Param 1 fp of caller ra of caller

Physical Stack Frames Frame Pointer Param N... Param 1 fp of caller ra of caller Locals and Temporaries Param N... Param 1 fp of caller ra of caller Locals and Temporaries

So What? In your code generator, you must assign each local variable, parameter, and temporary variable its own location. These locations occur in a particular stack frame and are called fp-relative. Param N Parameters begin at address fp + 4 and grow upward. Locals and temporaries begin at address fp 8 and grow... Param 1 fp of caller ra of caller Local 0 fp + 4N... fp + 4 fp + 0 fp - 4 fp - 8 downward... fp Local M... fp - 4-4M

From Your Perspective Location* location = new Location(fpRelative, +4, locname);

From Your Perspective Location* location = new Location(fpRelative, +4, locname);

From Your Perspective Location* location = new Location(fpRelative, +4, locname); What variable does this refer to?

And One More Thing... int globalvariable; int main() { globalvariable = 137;

And One More Thing... int globalvariable; int main() { globalvariable = 137;

And One More Thing... int globalvariable; int main() { globalvariable = 137; Where is this stored?

The Global Pointer MIPS also has a register called the global pointer (gp) that points to globally accessible storage. Memory pointed at by the global pointer is treated as an array of values that grows upward. You must choose an offset into this array for each global variable. Global Variable N gp + 4N... Global Variable 1... gp + 4 gp Global Variable 0 gp + 0

From Your Perspective Location* global = new Location(gpRelative, +8, locname);

From Your Perspective Location* global = new Location(gpRelative, +8, locname);

Summary of Memory Layout Most details abstracted away by IR format. Remember: Parameters start at fp + 4 and grow upward. Locals start at fp 8 and grow downward. Globals start at gp + 0 and grow upward. You will need to write code to assign variables to these locations.

TAC for Objects, Part I class A { void fn(int x) { int y; y = x; int main() { A a; a.fn(137);

TAC for Objects, Part I class A { void fn(int x) { int y; y = x; int main() { A a; a.fn(137); _A.fn: BeginFunc 4; y = x; EndFunc; main: BeginFunc 8; _t0 = 137; PushParam _t0; PushParam a; LCall _A.fn; PopParams 8; EndFunc;

TAC for Objects, Part I class A { void fn(int x) { int y; y = x; int main() { A a; a.fn(137); _A.fn: BeginFunc 4; y = x; EndFunc; main: BeginFunc 8; _t0 = 137; PushParam _t0; PushParam a; LCall _A.fn; PopParams 8; EndFunc;

A Reminder: Object Layout Vtable* Field 0... Field N Method 0 Method 1... Method K Vtable* Field 0... Field N Field 0... Field M Method 0 Method 1... Method K Method 0... Method L

TAC for Objects, Part II class A { int y; int z; void fn(int x) { y = x; x = z; int main() { A a; a.fn(137);

TAC for Objects, Part II class A { int y; int z; void fn(int x) { y = x; x = z; int main() { A a; a.fn(137); _A.fn: BeginFunc 4; *(this + 4) = x; x = *(this + 8); EndFunc; main: BeginFunc 8; _t0 = 137; PushParam _t0; PushParam a; LCall _A.fn; PopParams 8; EndFunc;

TAC for Objects, Part II class A { int y; int z; void fn(int x) { y = x; x = z; int main() { A a; a.fn(137); _A.fn: BeginFunc 4; *(this + 4) = x; x = *(this + 8); EndFunc; main: BeginFunc 8; _t0 = 137; PushParam _t0; PushParam a; LCall _A.fn; PopParams 8; EndFunc;

TAC for Objects, Part II class A { int y; int z; void fn(int x) { y = x; x = z; int main() { A a; a.fn(137); _A.fn: BeginFunc 4; *(this + 4) = x; x = *(this + 8); EndFunc; main: BeginFunc 8; _t0 = 137; PushParam _t0; PushParam a; LCall _A.fn; PopParams 8; EndFunc;

Memory Access in TAC Extend our simple assignments with memory accesses: var 1 = *var 2 var 1 = *(var 2 + constant) *var 1 = var 2 *(var 1 + constant) = var 2 You will need to translate field accesses into relative memory accesses.

TAC for Objects, Part III class Base { void hi() { Print("Base"); class Derived extends Base{ void hi() { Print("Derived"); int main() { Base b; b = new Derived; b.hi();

TAC for Objects, Part III class Base { void hi() { Print("Base"); class Derived extends Base{ void hi() { Print("Derived"); int main() { Base b; b = new Derived; b.hi();

TAC for Objects, Part III class Base { void hi() { Print("Base"); class Derived extends Base{ void hi() { Print("Derived"); int main() { Base b; b = new Derived; b.hi(); _Base.hi: BeginFunc 4; _t0 = "Base"; PushParam _t0; LCall _PrintString; PopParams 4; EndFunc; Vtable Base = _Base.hi, ; _Derived.hi: BeginFunc 4; _t0 = "Derived"; PushParam _t0; LCall _PrintString; PopParams 4; EndFunc; Vtable Derived = _Derived.hi, ;

TAC for Objects, Part III class Base { void hi() { Print("Base"); class Derived extends Base{ void hi() { Print("Derived"); int main() { Base b; b = new Derived; b.hi(); _Base.hi: BeginFunc 4; _t0 = "Base"; PushParam _t0; LCall _PrintString; PopParams 4; EndFunc; Vtable Base = _Base.hi, ; _Derived.hi: BeginFunc 4; _t0 = "Derived"; PushParam _t0; LCall _PrintString; PopParams 4; EndFunc; Vtable Derived = _Derived.hi, ;

TAC for Objects, Part III class Base { void hi() { Print("Base"); class Derived extends Base{ void hi() { Print("Derived"); int main() { Base b; b = new Derived; b.hi(); _Base.hi: BeginFunc 4; _t0 = "Base"; PushParam _t0; LCall _PrintString; PopParams 4; EndFunc; Vtable Base = _Base.hi, ; _Derived.hi: BeginFunc 4; _t0 = "Derived"; PushParam _t0; LCall _PrintString; PopParams 4; EndFunc; Vtable Derived = _Derived.hi, ;

TAC for Objects, Part III class Base { void hi() { Print("Base"); class Derived extends Base{ void hi() { Print("Derived"); int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

TAC for Objects, Part III class Base { void hi() { Print("Base"); class Derived extends Base{ void hi() { Print("Derived"); int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc; What's going on here?

Dissecting TAC int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi Code for Derived.hi int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi Code for Derived.hi fp of caller ra of caller int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi Code for Derived.hi fp of caller ra of caller int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi Code for Derived.hi fp of caller ra of caller _t0 _t1 _t2 _t3 b int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi Code for Derived.hi fp of caller ra of caller _t0 _t1 _t2 _t3 b int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi Code for Derived.hi 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi Code for Derived.hi 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi Code for Derived.hi 4 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b Param 1 int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi Code for Derived.hi 4 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b Param 1 int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi (raw memory) Code for Derived.hi 4 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b Param 1 int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi (raw memory) Code for Derived.hi 4 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b Param 1 int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi (raw memory) Code for Derived.hi 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi (raw memory) Code for Derived.hi 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi (raw memory) Code for Derived.hi 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi (raw memory) Code for Derived.hi 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi VTable* Code for Derived.hi 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi VTable* Code for Derived.hi 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi VTable* Code for Derived.hi 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi VTable* Code for Derived.hi 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi VTable* Code for Derived.hi 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi VTable* Code for Derived.hi 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi VTable* Code for Derived.hi 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b Param 1 int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi VTable* Code for Derived.hi 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b Param 1 int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi VTable* Code for Derived.hi 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b Param 1 int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi VTable* Code for Derived.hi 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

Dissecting TAC Derived Vtable hi VTable* Code for Derived.hi 4 fp of caller ra of caller _t0 _t1 _t2 _t3 b int main() { Base b; b = new Derived; b.hi(); main: BeginFunc 20; _t0 = 4; PushParam _t0; b = LCall _Alloc; PopParams 4; _t1 = Derived; *b = _t1; _t2 = *b; _t3 = *_t2; PushParam b; ACall _t3; PopParams 4; EndFunc;

OOP in TAC The address of an object's vtable can be referenced via the name assigned to the vtable (usually the object name). e.g. _t0 = Base; When creating objects, you must remember to set the object's vtable pointer or any method call will cause a crash at runtime. The ACall instruction can be used to call a method given a pointer to the first instruction.

Generating TAC

TAC Generation At this stage in compilation, we have an AST, annotated with scope information, and annotated with type information. To generate TAC for the program, we do (yet another) recursive tree traversal! Generate TAC for any subexpressions or substatements. Using the result, generate TAC for the overall expression.

TAC Generation for Expressions Define a function cgen(expr) that generates TAC to store an expression in a temporary variable, then hands back the name of that temporary. Define cgen directly for atomic expressions (constants, this, identifiers, etc.). Define cgen recursively for compound expressions (binary operators, function calls, etc.)

cgen for Basic Expressions

cgen for Basic Expressions cgen(k) = { // k is a constant Choose a new temporary t Emit( t = k ); Return t

cgen for Basic Expressions cgen(k) = { // k is a constant Choose a new temporary t Emit( t = k ); Return t cgen(id) = { // id is an identifier Choose a new temporary t Emit( t = id ) Return t

cgen for Binary Operators

cgen for Binary Operators cgen(e 1 + e 2 ) = { Choose a new temporary t Let t 1 = cgen(e 1 ) Let t 2 = cgen(e 2 ) Emit( t = t 1 + t 2 ) Return t

An Example cgen(5 + x) = { Choose a new temporary t Let t 1 = cgen(5) Let t 2 = cgen(x) Emit (t = t 1 + t 2 ) Return t

An Example cgen(5 + x) = { Choose a new temporary t Let t 1 = { Choose a new temporary t Emit( t = 5 ) return t Let t 2 = cgen(x) Emit (t = t 1 + t 2 ) Return t

An Example cgen(5 + x) = { Choose a new temporary t Let t 1 = { Choose a new temporary t Emit( t = 5 ) return t Let t 2 = { Choose a new temporary t Emit( t = x ) return t Emit (t = t 1 + t 2 ) Return t

An Example cgen(5 + x) = { Choose a new temporary t Let t 1 = { Choose a new temporary t Emit( t = 5 ) return t Let t 2 = { Choose a new temporary t Emit( t = x ) return t Emit (t = t 1 + t 2 ) Return t _t0 = 5 _t1 = x _t2 = _t0 + _t2

cgen for Statements We can extend the cgen function to operate over statements as well. Unlike cgen for expressions, cgen for statements does not return the name of a temporary holding a value. (Why?)

cgen for Simple Statements

cgen for Simple Statements cgen(expr;) = { cgen(expr)

cgen for while loops

cgen for while loops cgen(while (expr) stmt) = { Let L before be a new label. Let L after be a new label. Emit( L before :) Let t = cgen(expr) Emit( IfZ t Goto L after ) cgen(stmt) Emit( Goto L before ) Emit( L after : )

cgen for while loops cgen(while (expr) stmt) = { Let L before be a new label. Let L after be a new label. Emit( L before :) Let t = cgen(expr) Emit( IfZ t Goto L after ) cgen(stmt) Emit( Goto L before ) Emit( L after : )

cgen for while loops cgen(while (expr) stmt) = { Let L before be a new label. Let L after be a new label. Emit( L before :) Let t = cgen(expr) Emit( IfZ t Goto L after ) cgen(stmt) Emit( Goto L before ) Emit( L after : )

cgen for while loops cgen(while (expr) stmt) = { Let L before be a new label. Let L after be a new label. Emit( L before :) Let t = cgen(expr) Emit( IfZ t Goto L after ) cgen(stmt) Emit( Goto L before ) Emit( L after : )

cgen for while loops cgen(while (expr) stmt) = { Let L before be a new label. Let L after be a new label. Emit( L before :) Let t = cgen(expr) Emit( IfZ t Goto L after ) cgen(stmt) Emit( Goto L before ) Emit( L after : )

cgen for while loops cgen(while (expr) stmt) = { Let L before be a new label. Let L after be a new label. Emit( L before :) Let t = cgen(expr) Emit( IfZ t Goto L after ) cgen(stmt) Emit( Goto L before ) Emit( L after : )

Words of Encouragement

Next Time Intro to IR Optimization Basic Blocks Local Optimizations Introduction to Nonlocal Optimization