Lecture 09 – IR (Backpatching) Eran Yahav 1 Reference: Dragon 6.2,6.3,6.4,6.6 www.cs.technion.ac.il/~yahave/tocs2011/compilers-lec09.pptx.

Slides:



Advertisements
Similar presentations
Chapter 6 Intermediate Code Generation
Advertisements

Intermediate Code Generation
Intermediate Code Generation. 2 Intermediate languages Declarations Expressions Statements.
Backpatching: The syntax directed definition we discussed before can be implemented in two or more passes (we have both synthesized attributes and inheritent.
CS 31003: Compilers Introduction to Phases of Compiler.
Lecture 08a – Backpatching & Recap Eran Yahav 1 Reference: Dragon 6.2,6.3,6.4,6.6.
Short circuit code for boolean expressions: Boolean expressions are typically used in the flow of control statements, such as if, while and for statements,
8 Intermediate code generation
Chapter 8 Intermediate Code Generation. Intermediate languages: Syntax trees, three-address code, quadruples. Types of Three – Address Statements: x :=
1 Compiler Construction Intermediate Code Generation.
Generation of Intermediate Code Compiler Design Lecture (03/30//98) Computer Science Rensselaer Polytechnic.
Compilation (Semester A, 2013/14) Lecture 6b: Context Analysis (aka Semantic Analysis) Noam Rinetzky 1 Slides credit: Mooly Sagiv and Eran Yahav.
PSUCS322 HM 1 Languages and Compiler Design II IR Code Generation I Material provided by Prof. Jingke Li Stolen with pride and modified by Herb Mayer PSU.
Overview of Previous Lesson(s) Over View  Front end analyzes a source program and creates an intermediate representation from which the back end generates.
Lecture 07 – attribute grammars + intro to IR Eran Yahav 1.
Compiler Construction
Compiler Construction Sohail Aslam Lecture Boolean Expressions E → E 1 and M E 2 {backpatch(E 1.truelist, M.quad); E.truelist = E 2.truelist; E.falselist.
Three Address Code Generation Backpatching-I Prepared By: Siddharth Tiwary 04CS3010.
CS412/413 Introduction to Compilers Radu Rugina Lecture 16: Efficient Translation to Low IR 25 Feb 02.
Lecture 01 - Introduction Eran Yahav 1. 2 Who? Eran Yahav Taub 734 Tel: Monday 13:30-14:30
Theory of Compilation Erez Petrank Lecture 7: Intermediate Representation Part 2: Backpatching 1.
Theory of Compilation Erez Petrank Lecture 6: Intermediate Representation 1.
Compiler Summary Mooly Sagiv html://
Abstract Syntax Trees Lecture 14 Wed, Mar 3, 2004.
2.2 A Simple Syntax-Directed Translator Syntax-Directed Translation 2.4 Parsing 2.5 A Translator for Simple Expressions 2.6 Lexical Analysis.
1 Structure of a Compiler Front end of a compiler is efficient and can be automated Back end is generally hard to automate and finding the optimum solution.
1 Semantic Analysis Aaron Bloomfield CS 415 Fall 2005.
Chapter 8: Intermediate Code Generation
Joey Paquet, Lecture 12 Review. Joey Paquet, Course Review Compiler architecture –Lexical analysis, syntactic analysis, semantic.
Unit-1 Introduction Prepared by: Prof. Harish I Rathod
Topic #1: Introduction EE 456 – Compiling Techniques Prof. Carl Sable Fall 2003.
1 Compiler Design (40-414)  Main Text Book: Compilers: Principles, Techniques & Tools, 2 nd ed., Aho, Lam, Sethi, and Ullman, 2007  Evaluation:  Midterm.
Topic #7: Intermediate Code EE 456 – Compiling Techniques Prof. Carl Sable Fall 2003.
1 Intermediate Code Generation Abstraction at the source level identifiers, operators, expressions, statements, conditionals, iteration, functions (user.
CS412/413 Introduction to Compilers and Translators Spring ’99 Lecture 11: Functions and stack frames.
1 A Simple Syntax-Directed Translator CS308 Compiler Theory.
Boolean expressions 1 productionsemantic action E  E1 or E2E1.trueLabel = E.trueLabel; E1.falseLabel = freshLabel(); E2.trueLabel = E.trueLabel; E2.falseLabel.
Course Revision.. Contents  Lexical Analysis  Our Compiler Structure  Tokens, Lexemes & Patterns  RE’s & Regular Definitions  Transition Diagrams.
Code Generation CPSC 388 Ellen Walker Hiram College.
Chap. 4, Intermediate Code Generation
LECTURE 3 Compiler Phases. COMPILER PHASES Compilation of a program proceeds through a fixed series of phases.  Each phase uses an (intermediate) form.
Theory of Compilation Erez Petrank Lecture 6: Intermediate Representation and Attribute Grammars 1.
Three Address Code Generation of Control Statements continued..
CS 404Ahmed Ezzat 1 CS 404 Introduction to Compiler Design Lecture 10 Ahmed Ezzat.
Lecture 9 Symbol Table and Attributed Grammars
System Software Unit-1 (Language Processors) A TOY Compiler
A Simple Syntax-Directed Translator
Constructing Precedence Table
Compilers Principles, Techniques, & Tools Taught by Jing Zhang
Compiler Construction
Compiler Construction
Intermediate Code Generation
Subject Name:COMPILER DESIGN Subject Code:10CS63
Compiler Optimization and Code Generation
CS 3304 Comparative Languages
Intermediate Code Generation Part II
Chapter 6 Intermediate-Code Generation
Intermediate Code Generation Part II
Intermediate Code Generation Part II
Three-address code A more common representation is THREE-ADDRESS CODE . Three address code is close to assembly language, making machine code generation.
Compiler design.
Compiler Design 21. Intermediate Code Generation
Three Address Code Generation – Backpatching
Compiler Construction
Intermediate Code Generation Part II
Intermediate Code Generation
Compiler Construction
Intermediate Code Generation Part II
Compiler Design 21. Intermediate Code Generation
Compiler Construction
Presentation transcript:

Lecture 09 – IR (Backpatching) Eran Yahav 1 Reference: Dragon 6.2,6.3,6.4,6.6

Recap  Lexical analysis  regular expressions identify tokens (“words”)  Syntax analysis  context-free grammars identify the structure of the program (“sentences”)  Contextual (semantic) analysis  type checking defined via typing judgments  can be encoded via attribute grammars  Syntax directed translation (SDT)  attribute grammars  Intermediate representation  many possible IRs  generation of intermediate representation  3AC 2

Journey inside a compiler 3 Lexical Analysis Syntax Analysis Sem. Analysis Inter. Rep. Code Gen. float position; float initial; float rate; position = initial + rate * 60 Token Stream

Journey inside a compiler 4 Lexical Analysis Syntax Analysis Sem. Analysis Inter. Rep. Code Gen. 60 = + * AST idsymboltypedata 1positionfloat… 2initialfloat… 3ratefloat… symbol table S  ID = E E  ID | E + E | E * E | NUM

Problem 3.8 from [Appel] A simple left-recursive grammar: E  E + id E  id A simple right-recursive grammar accepting the same language: E  id + E E  id Which has better behavior for shift-reduce parsing? 5

Answer The stack never has more than three items on it. In general, with LR-parsing of left-recursive grammars, an input string of length O(n) requires only O(1) space on the stack. 6 E  E + id E  id Input id+id+id+id+id id (reduce) E E + E + id (reduce) E E + E + id (reduce) E E + E + id (reduce) E E + E + id (reduce) E stack left recursive

Answer The stack grows as large as the input string. In general, with LR-parsing of right-recursive grammars, an input string of length O(n) requires O(n) space on the stack. 7 E  id + E E  id Input id+id+id+id+id id id + id + id id + id + id + id + id id + id + id + id id + id + id + id + id + id + id + id + id (reduce) id + id + id + id + E (reduce) id + id + id + E (reduce) id + id + E (reduce) id + E (reduce) E stack right recursive

Journey inside a compiler 8 Lexical Analysis Syntax Analysis Sem. Analysis Inter. Rep. Code Gen. 60 = + * inttofloat 60 = + * AST coercion: automatic conversion from int to float inserted by the compiler idsymboltype 1positionfloat 2initialfloat 3ratefloat symbol table

Journey inside a compiler 9 Lexical Analysis Syntax Analysis Sem. Analysis Inter. Rep. Code Gen. t1 = inttofloat(60) t2 = id3 * t1 t3 = id2 + t2 id1 = t3 3AC 60 = + * inttofloat productionsemantic rule S  id = ES.code := E. code || gen(id.var ‘:=‘ E.var) E  E1 op E2E.var := freshVar(); E.code = E1.code || E2.code || gen(E.var ‘:=‘ E1.var ‘op’ E2.var) E  inttofloat(num)E.var := freshVar(); E.code = gen(E.var ‘:=‘ inttofloat(num)) E  idE.var := id.var; E.code = ‘’ t1 = inttofloat(60) t2 = id3 * t1 t3 = id2 * t2 id1 = t3 (for brevity, bubbles show only code generated by the node and not all accumulated “code” attribute) note the structure: translate E1 translate E2 handle operator

Journey inside a compiler 10 Inter. Rep. Code Gen. Lexical Analysis Syntax Analysis Sem. Analysis 3AC Optimized t1 = inttofloat(60) t2 = id3 * t1 t3 = id2 + t2 id1 = t3 t1 = id3 * 60.0 id1 = id2 + t1 value known at compile time can generate code with converted value eliminated temporary t3

Journey inside a compiler 11 Inter. Rep. Code Gen. Lexical Analysis Syntax Analysis Sem. Analysis Optimized t1 = id3 * 60.0 id1 = id2 + t1 Code Gen LDF R2, id3 MULF R2, R2, #60.0 LDF R1, id2 ADDF R1,R1,R2 STF id1,R1

12 You are here Executable code exe Source text txt Compiler Lexical Analysis Syntax Analysis Parsing Semantic Analysis Inter. Rep. (IR) Code Gen.

IR So Far…  many possible intermediate representations  3-address code (3AC)  Every instruction operates on at most three addresses  result = operand1 operator operand2  gets us closer to code generation  enables machine-independent optimizations  how do we generate 3AC? 13

Last Time: Creating 3AC  Creating 3AC via syntax directed translation  Attributes  code – code generated for a nonterminal  var – name of variable that stores result of nonterminal  freshVar() – helper function that returns the name of a fresh variable 14

Creating 3AC: expressions 15 productionsemantic rule S  id := ES.code := E. code || gen(id.var ‘:=‘ E.var) E  E1 + E2E.var := freshVar(); E.code = E1.code || E2.code || gen(E.var ‘:=‘ E1.var ‘+’ E2.var) E  E1 * E2E.var := freshVar(); E.code = E1.code || E2.code || gen(E.var ‘:=‘ E1.var ‘*’ E2.var) E  - E1E.var := freshVar(); E.code = E1.code || gen(E.var ‘:=‘ ‘uminu’ E1.var) E  (E1)E.var := E1.var E.code = ‘(‘ || E1.code || ‘)’ E  idE.var := id.var; E.code = ‘’ (we use || to denote concatenation of intermediate code fragments)

example 16 assign a + * b uminus c * b c E.var = c E.code =‘’ E.var = b E.code =‘’ E.var = t2 E.code =‘t1 = -c t2 = b*t1’ E.var = t1 E.code =‘t1 = -c’ E.var = b E.code =‘’ E.var = c E.code =‘’ E.var = t3 E.code =‘t3 = -c’ E.var = t4 E.code =‘t3 = -c t4 = b*t3’ E.var = t5 E.code =‘t1 = -c t2 = b*t1 t3 = -c t4 = b*t3 t5 = t2+t4’

Creating 3AC: control statements  3AC only supports conditional/unconditional jumps  Add labels  Attributes  begin – label marks beginning of code  after – label marks end of code  Helper function freshLabel() allocates a new fresh label 17

Expressions and assignments 18 productionsemantic action S  id := E{ p:= lookup(id.name); if p ≠ null then emit(p ‘:=‘ E.var) else error } E  E1 op E2{ E.var := freshVar(); emit(E.var ‘:=‘ E1.var op E2.var) } E  - E1{ E.var := freshVar(); emit(E.var ‘:=‘ ‘uminus’ E1.var) } E  ( E1){ E.var := E1.var } E  id{ p:= lookup(id.name); if p ≠ null then E.var :=p else error }

Boolean Expressions 19 productionsemantic action E  E1 op E2{ E.var := freshVar(); emit(E.var ‘:=‘ E1.var op E2.var) } E  not E1{ E.var := freshVar(); emit(E.var ‘:=‘ ‘not’ E1.var) } E  ( E1){ E.var := E1.var } E  true{ E.var := freshVar(); emit(E.var ‘:=‘ ‘1’) } E  false{ E.var := freshVar(); emit(E.var ‘:=‘ ‘0’) } Represent true as 1, false as 0 Wasteful representation, creating variables for true/false

Boolean expressions via jumps 20 productionsemantic action E  id1 op id2{ E.var := freshVar(); emit(‘if’ id1.var relop id2.var ‘goto’ nextStmt+2); emit( E.var ‘:=‘ ‘0’); emit(‘goto ‘ nextStmt + 1); emit(E.var ‘:=‘ ‘1’) }

Example 21 E EE a<b or E c<d E e<f and if a < b goto : T 1 := 0101: goto : T 1 := 1103: if c < d goto : T 2 := 0105: goto : T 2 := 1107: if e < f goto : T 3 := 0109: goto : T 3 := 1111: 112: 113: T 4 := T 2 and T 3 T 5 := T 1 or T 4

Short circuit evaluation  Second argument of a Boolean operator is only evaluated if the first argument does not already determine the outcome  (x and y) is equivalent to if x then y else false;  (x or y) is equivalent to if x then true else y 22

example 23 a < b or (c<d and e<f) 100: if a < b goto : T 1 := 0 102: goto : T 1 := 1 104: if c < d goto : T 2 := 0 106: goto : T 2 := 1 108: if e < f goto : T 3 := 0 110: goto : T 3 := 1 112: T 4 := T 2 and T 3 113: T 5 := T 1 and T 4 100: if a < b goto : if !(c < d) goto : if e < f goto : T := 0 104: goto : T := 1 106: naiveShort circuit evaluation

Control Structures  For every Boolean expression B, we attach two properties  falseLabel – target label for a jump when condition B evaluates to false  trueLabel – target label for a jump when condition B evaluates to true  For every statement S we attach a property  next – the label of the next code to execute after S  Challenge  Compute falseLabel and trueLabel during code generation 24 S  if B then S1 | if B then S1 else S2 | while B do S1

Control Structures: next productionsemantic action P  SS.next = freshLabel(); P.code = S.code || label(S.next) S  S1S2S1.next = freshLabel(); S2.next = S.next; S.code = S1.code || label(S1.next) || S2.code 25  The label S.next is symbolic, we will only determine its value after we finish deriving S

Control Structures: conditional 26 productionsemantic action S  if B then S1B.trueLabel = freshLabel(); B.falseLabel = S.next; S1.next = S.next; S.code = B.code || gen (B.trueLabel ‘:’) || S1.code

Control Structures: conditional 27 productionsemantic action S  if B then S1 else S2 B.trueLabel = freshLabel(); B.falseLabel = freshLabel(); S1.next = S.next; S2.next = S.next; S.code = B.code || gen(B.trueLabel ‘:’) || S1.code || gen(‘goto’ S.next) || gen(B.falseLabel ‘:’) || S2.code B.code S1.code goto S.next S2.code … B.trueLabel: B.falseLabel: S.next:

Boolean expressions 28 productionsemantic action B  B1 or B2B1.trueLabel = B.trueLabel; B1.falseLabel = freshLabel(); B2.trueLabel = B.trueLabel; B2.falseLabel = B.falseLabel; B.code = B1.code || gen (B1.falseLabel ‘:’) || B2.code B  B1 and B2B1.trueLabel = freshLabel(); B1.falseLabel = B.falseLabel; B2.trueLabel = B.trueLabel; B2.falseLabel = B.falseLabel; B.code = B1.code || gen (B1.trueLabel ‘:’) || B2.code B  not B1B1.trueLabel = B.falseLabel; B1.falseLabel = B.trueLabel; B.code = B1.code; B  (B1)B1.trueLabel = B.trueLabel; B1.falseLabel = B.falseLabel; B.code = B1.code; B  id1 relop id2B.code=gen (‘if’ id1.var relop id2.var ‘goto’ B.trueLabel)||gen(‘goto’ B.falseLabel); B  trueB.code = gen(‘goto’ B.trueLabel) B  falseB.code = gen(‘goto’ B.falseLabel);

Boolean expressions  How can we determine the address of B1.falseLabel?  Only possible after we know the code of B1 and all the code preceding B1 29 productionsemantic action B  B1 or B2B1.trueLabel = B.trueLabel; B1.falseLabel = freshLabel(); B2.trueLabel = B.trueLabel; B.falseLabel = B.falseLabel; B.code = B1.code || gen (B1.falseLabel ‘:’) || B2.code

Example 30 S ifBthenS1 B1B2and falsetrue B.trueLabel = freshLabel(); B.falseLabel = S.next; S1.next = S.next; S.code = B.code || gen (B.trueLabel ‘:’) || S1.code B1.trueLabel = freshLabel(); B1.falseLabel = B.falseLabel; B2.trueLabel = B.trueLabel; B2.falseLabel = B.falseLabel; B.code = B1.code || gen (B1.trueLabel ‘:’) || B2.code B.code = gen(‘goto’ B.trueLabel) B.code = gen(‘goto’ B.falseLabel)

Computing addresses for labels  We used symbolic labels  We need to compute their addresses  We can compute addresses for the labels but it would require an additional pass on the AST  Can we do it in a single pass? 31

Backpatching  Goal: generate code in a single pass  Generate code as we did before, but manage labels differently  Keep labels symbolic until values are known, and then back-patch them  New synthesized attributes for B  B.truelist – list of jump instructions that eventually get the label where B goes when B is true.  B.falselist – list of jump instructions that eventually get the label where B goes when B is false. 32

Backpatching  Previous approach does not guarantee a single pass  The attribute grammar we had before is not S- attributed (e.g., next), and is not L-attributed.  For every label, maintain a list of instructions that jump to this label  When the address of the label is known, go over the list and update the address of the label 33

Backpatching  makelist(addr) – create a list of instructions containing addr  merge(p1,p2) – concatenate the lists pointed to by p1 and p2, returns a pointer to the new list  backpatch(p,addr) – inserts i as the target label for each of the instructions in the list pointed to by p 34

Backpatching Boolean expressions 35 productionsemantic action B  B1 or M B2backpatch(B1.falseList,M.instr); B.trueList = merge(B1.trueList,B2.trueList); B.falseList = B2.falseList; B  B1 and M B2backpatch(B1.trueList,M.instr); B.trueList = B2.trueList; B.falseList = merge(B1.falseList,B2.falseList); B  not B1B.trueList = B1.falseList; B.falseList = B1.trueList; B  (B1)B.trueList = B1.trueList; B.falseList = B1.falseList; B  id1 relop id2B.trueList = makeList(nextInstr); B.falseList = makeList(nextInstr+1); emit (‘if’ id1.var relop id2.var ‘goto _’) || emit(‘goto _’); B  trueB.trueList = makeList(nextInstr); emit (‘goto _’); B  falseB.falseList = makeList(nextInstr); emit (‘goto _’); M  M   M.instr = nextinstr;

Marker  { M.instr = nextinstr;}  Use M to obtain the address just before B2 code starts being generated 36 B1 or B M B2 

Example 37 X 200 and x != y B B x<150 B x>200 B x!=y B and orM M  100: if x< 150 goto _ 101: goto _ B  id1 relop id2B.trueList = makeList(nextInstr); B.falseList = makeList(nextInstr+1); emit (‘if’ id1.var relop id2.var ‘goto _’) || emit(‘goto _’); B.t = {100} B.f = {101} 

Example 38 X 200 and x != y B B x<150 B x>200 B x!=y B and orM M  100: if x< 150 goto _ 101: goto _ B.t = {100} B.f = {101} M  M   M.instr = nextinstr; M.i = 102 

Example 39 X 200 and x != y B B x<150 B x>200 B x!=y B and orM M  100: if x< 150 goto _ 101: goto _ B.t = {100} B.f = {101} M.i = 102 B  id1 relop id2B.trueList = makeList(nextInstr); B.falseList = makeList(nextInstr+1); emit (‘if’ id1.var relop id2.var ‘goto _’) || emit(‘goto _’); 102: if x> 200 goto _ 103: goto _ B.t = {102} B.f = {103} 

Example 40 X 200 and x != y B B x<150 B x>200 B x!=y B and orM M  100: if x< 150 goto _ 101: goto _ B.t = {100} B.f = {101} M.i = : if x> 200 goto _ 103: goto _ B.t = {102} B.f = {103}  M  M   M.instr = nextinstr; M.i = 104

Example 41 X 200 and x != y B B x<150 B x>200 B x!=y B and orM M  100: if x< 150 goto _ 101: goto _ B.t = {100} B.f = {101} M.i = : if x> 200 goto _ 103: goto _ B.t = {102} B.f = {103}  M.i = 104 B  id1 relop id2B.trueList = makeList(nextInstr); B.falseList = makeList(nextInstr+1); emit (‘if’ id1.var relop id2.var ‘goto _’) || emit(‘goto _’); 104: if x!=y goto _ 105: goto _ B.t = {104} B.f = {105}

Example 42 X 200 and x != y B B x<150 B x>200 B x!=y B and orM M  100: if x< 150 goto _ 101: goto _ B.t = {100} B.f = {101} M.i = : if x> 200 goto : goto _ B.t = {102} B.f = {103}  M.i = : if x!=y goto _ 105: goto _ B.t = {104} B.f = {105} B  B1 and M B2backpatch(B1.trueList,M.instr); B.trueList = B2.trueList; B.falseList = merge(B1.falseList,B2.falseList); B.t = {104} B.f = {103,105}

Example 43 X 200 and x != y B B x<150 B x>200 B x!=y B and orM M  100: if x< 150 goto _ 101: goto 102 B.t = {100} B.f = {101} M.i = : if x> 200 goto : goto _ B.t = {102} B.f = {103}  M.i = : if x!=y goto _ 105: goto _ B.t = {104} B.f = {105} B.t = {104} B.f = {103,105} B  B1 or M B2backpatch(B1.falseList,M.instr); B.trueList = merge(B1.trueList,B2.trueList); B.falseList = B2.falseList; B.t = {100,104} B.f = {103,105}

Example : if x<150 goto _ 101: goto _ 102: if x>200 goto _ 103: goto _ 104: if x!=y goto _ 105: goto _ 100: if x<150 goto _ 101: goto _ 102: if x>200 goto : goto _ 104: if x!=y goto _ 105: goto _ 100: if x<150 goto _ 101: goto : if x>200 goto : goto _ 104: if x!=y goto _ 105: goto _ Before backpatching After backpatching by the production B  B1 and M B2 After backpatching by the production B  B1 or M B2

Backpatching for statements 45 productionsemantic action S  if (B) M S1backpatch(B.trueList,M.instr); S.nextList = merge(B.falseList,S1.nextList); S  if (B) M1 S1 N else M2 S2 backpatch(B.trueList,M1.instr); backpatch(B.falseList,M2.instr); temp = merge(S1.nextList,N.nextList); S.nextList = merge(temp,S2.nextList); S  while M1 (B) M2 S1 backpatch(S1.nextList,M1.instr); backpatch(B.trueList,M2.instr); S.nextList = B.falseList; emit(‘goto’ M1.instr); S  { L }S.nextList = L.nextList; S  AS.nextList = null; M  M   M.instr = nextinstr; N  N   N.nextList = makeList(nextInstr); emit(‘goto _’); L  L1 M Sbackpatch(L1.nextList,M.instr); L.nextList = S.nextList; L  SL.nextList = S.nextList

Example 46 if (x 200 and x != y) y=200; B B x<150 B x>200 B x!=y B and orM M  100: if x< 150 goto _ 101: goto 102 B.t = {100} B.f = {101} M.i = : if x> 200 goto : goto _ B.t = {102} B.f = {103}  M.i = : if x!=y goto _ 105: goto _ B.t = {104} B.f = {105} B.t = {104} B.f = {103,105} B.t = {100,104} B.f = {103,105} S  if (B) M S1backpatch(B.trueList,M.instr); S.nextList = merge(B.falseList,S1.nextList); if … M  M.i = 106 S.nextList = {103,105}

Example : if x<150 goto _ 101: goto : if x>200 goto : goto _ 104: if x!=y goto _ 105: goto _ 106: y = 200 After backpatching by the production B  B1 or M B2 100: if x<150 goto : goto : if x>200 goto : goto _ 104: if x!=y goto : goto _ 106: y = 200 After backpatching by the production S  if (B) M S1

Procedures  we will see handling of procedure calls in much more detail later 48 n = f(a[i]); t1 = i * 4 t2 = a[t1] // could have expanded this as well param t2 t3 = call f, 1 n = t3

Procedures  type checking  function type: return type, type of formal parameters  within an expression function treated like any other operator  symbol table  parameter names 49 D  define T id (F) { S } F   | T id, F S  return E; | … E  id (A) | … A   | E, A expressions statements

Summary  pick an intermediate representation  translate expressions  use a symbol table to implement declarations  generate jumping code for boolean expressions  value of the expression is implicit in the control location  backpatching  a technique for generating code for boolean expressions and statements in one pass  idea: maintain lists of incomplete jumps, where all jumps in a list have the same target. When the target becomes known, all instructions on its list are “filled in”. 50

Coming up next…  Activation Records 51

The End 52