Syntax Analysis, VII One more LR(1) example, plus some more stuff. Comp 412 COMP 412 FALL Chapter 3 in EaC2e. target code.

Similar documents
Syntax Analysis, VI Examples from LR Parsing. Comp 412

Parsing Wrapup. Roadmap (Where are we?) Last lecture Shift-reduce parser LR(1) parsing. This lecture LR(1) parsing

CS415 Compilers. LR Parsing & Error Recovery

Parsing II Top-down parsing. Comp 412

Syntax Analysis, III Comp 412

Syntax Analysis, III Comp 412

Parsing. Note by Baris Aktemur: Our slides are adapted from Cooper and Torczon s slides that they prepared for COMP 412 at Rice.

Bottom-up Parser. Jungsik Choi

Building a Parser Part III

Introduction to Parsing. Comp 412

Parsing III. CS434 Lecture 8 Spring 2005 Department of Computer Science University of Alabama Joel Jones

Syntax Analysis, V Bottom-up Parsing & The Magic of Handles Comp 412

CS415 Compilers. Lexical Analysis

EDAN65: Compilers, Lecture 06 A LR parsing. Görel Hedin Revised:

Compiler Construction 2016/2017 Syntax Analysis

Bottom-up parsing. Bottom-Up Parsing. Recall. Goal: For a grammar G, withstartsymbols, any string α such that S α is called a sentential form

Syntactic Analysis. Top-Down Parsing

Chapter 4. Lexical and Syntax Analysis

CS 406/534 Compiler Construction Parsing Part II LL(1) and LR(1) Parsing

4. Lexical and Syntax Analysis

4. Lexical and Syntax Analysis

shift-reduce parsing

Computing Inside The Parser Syntax-Directed Translation. Comp 412 COMP 412 FALL Chapter 4 in EaC2e. source code. IR IR target.

Grammars. CS434 Lecture 15 Spring 2005 Department of Computer Science University of Alabama Joel Jones

A left-sentential form is a sentential form that occurs in the leftmost derivation of some sentence.

CSCI312 Principles of Programming Languages

Lexical Analysis. Note by Baris Aktemur: Our slides are adapted from Cooper and Torczon s slides that they prepared for COMP 412 at Rice.

Parsing II Top-down parsing. Comp 412

Parsing III. (Top-down parsing: recursive descent & LL(1) )

CSE 130 Programming Language Principles & Paradigms Lecture # 5. Chapter 4 Lexical and Syntax Analysis

CS 406/534 Compiler Construction Parsing Part I

Part III : Parsing. From Regular to Context-Free Grammars. Deriving a Parser from a Context-Free Grammar. Scanners and Parsers.

Let us construct the LR(1) items for the grammar given below to construct the LALR parsing table.

S Y N T A X A N A L Y S I S LR

8 Parsing. Parsing. Top Down Parsing Methods. Parsing complexity. Top down vs. bottom up parsing. Top down vs. bottom up parsing

CS 406/534 Compiler Construction LR(1) Parsing and CSA

Lexical Analysis - An Introduction. Lecture 4 Spring 2005 Department of Computer Science University of Alabama Joel Jones

Wednesday, September 9, 15. Parsers

Parsers. What is a parser. Languages. Agenda. Terminology. Languages. A parser has two jobs:

Parsing Part II (Top-down parsing, left-recursion removal)

CS415 Compilers. Syntax Analysis. These slides are based on slides copyrighted by Keith Cooper, Ken Kennedy & Linda Torczon at Rice University

Wednesday, August 31, Parsers

Computing Inside The Parser Syntax-Directed Translation. Comp 412

Monday, September 13, Parsers

Compiler Design 1. Bottom-UP Parsing. Goutam Biswas. Lect 6

Downloaded from Page 1. LR Parsing

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

Parsers. Xiaokang Qiu Purdue University. August 31, 2018 ECE 468

CS 2210 Sample Midterm. 1. Determine if each of the following claims is true (T) or false (F).

Lecture 7: Deterministic Bottom-Up Parsing

Section A. A grammar that produces more than one parse tree for some sentences is said to be ambiguous.

Parsing. Roadmap. > Context-free grammars > Derivations and precedence > Top-down parsing > Left-recursion > Look-ahead > Table-driven parsing

3. Syntax Analysis. Andrea Polini. Formal Languages and Compilers Master in Computer Science University of Camerino

Lecture 8: Deterministic Bottom-Up Parsing

CS 406/534 Compiler Construction Putting It All Together

Context-free grammars

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

Bottom-Up Parsing. Lecture 11-12

Compiler Construction: Parsing

Principle of Compilers Lecture IV Part 4: Syntactic Analysis. Alessandro Artale

Bottom-Up Parsing. Lecture 11-12


Lexical Analysis. Introduction

CSE P 501 Compilers. LR Parsing Hal Perkins Spring UW CSE P 501 Spring 2018 D-1

Parser. Larissa von Witte. 11. Januar Institut für Softwaretechnik und Programmiersprachen. L. v. Witte 11. Januar /23

Lecture 14: Parser Conflicts, Using Ambiguity, Error Recovery. Last modified: Mon Feb 23 10:05: CS164: Lecture #14 1

Lexical and Syntax Analysis. Bottom-Up Parsing

Top down vs. bottom up parsing

Code Shape Comp 412 COMP 412 FALL Chapters 4, 5, 6 & 7 in EaC2e. source code. IR IR target. code. Front End Optimizer Back End

EXAM. CS331 Compiler Design Spring Please read all instructions, including these, carefully

The Parsing Problem (cont d) Recursive-Descent Parsing. Recursive-Descent Parsing (cont d) ICOM 4036 Programming Languages. The Complexity of Parsing

3. Parsing. Oscar Nierstrasz

Computing Inside The Parser Syntax-Directed Translation, II. Comp 412

Conflicts in LR Parsing and More LR Parsing Types

Generating Code for Assignment Statements back to work. Comp 412 COMP 412 FALL Chapters 4, 6 & 7 in EaC2e. source code. IR IR target.

Bottom Up Parsing. Shift and Reduce. Sentential Form. Handle. Parse Tree. Bottom Up Parsing 9/26/2012. Also known as Shift-Reduce parsing

Compiler Optimisation

Algorithms for NLP. LR Parsing. Reading: Hopcroft and Ullman, Intro. to Automata Theory, Lang. and Comp. Section , pp.

Introduction to Parsing

LR Parsing LALR Parser Generators

Parsing Algorithms. Parsing: continued. Top Down Parsing. Predictive Parser. David Notkin Autumn 2008

COP4020 Programming Languages. Syntax Prof. Robert van Engelen

CS 4120 Introduction to Compilers

Table-driven using an explicit stack (no recursion!). Stack can be viewed as containing both terminals and non-terminals.

PART 3 - SYNTAX ANALYSIS. F. Wotawa TU Graz) Compiler Construction Summer term / 309

LR Parsing Techniques

Computing Inside The Parser Syntax-Directed Translation, II. Comp 412 COMP 412 FALL Chapter 4 in EaC2e. source code. IR IR target.

Review main idea syntax-directed evaluation and translation. Recall syntax-directed interpretation in recursive descent parsers

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

EDAN65: Compilers, Lecture 04 Grammar transformations: Eliminating ambiguities, adapting to LL parsing. Görel Hedin Revised:

Chapter 3: Lexing and Parsing

LR Parsing LALR Parser Generators

Bottom-Up Parsing. Parser Generation. LR Parsing. Constructing LR Parser

Chapter 4: LR Parsing

CS502: Compilers & Programming Systems

CSE 401 Compilers. LR Parsing Hal Perkins Autumn /10/ Hal Perkins & UW CSE D-1

Intermediate Representations

3.5 Practical Issues PRACTICAL ISSUES Error Recovery

Syntactic Analysis. Top-Down Parsing. Parsing Techniques. Top-Down Parsing. Remember the Expression Grammar? Example. Example

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

Transcription:

COMP 412 FALL 2017 Syntax Analysis, VII One more LR(1) example, plus some more stuff Comp 412 source code IR Front End Optimizer Back End IR target code Copyright 2017, Keith D. Cooper & Linda Torczon, all rights reserved. Students enrolled in Comp 412 at Rice University have explicit permission to make copies of these materials for their personal use. Faculty from other educational institutions may use these materials for nonprofit educational purposes, provided this copyright notice is preserved. Chapter 3 in EaC2e

Computing Closures Review Closure(s) adds all the possibilities for the items already in s Any item [A b Bd,a] where B Î NT implies [B t,x] for each production that has B on the lhs, and each x Î FIRST(da) Since bbd is valid, any way to derive bbd is valid, too The Algorithm Closure( s ) while ( s is still changing ) " items [A b Bd,a] Î s lookahead FIRST(da) // d might be e " productions B t Î P " b Î lookahead if [B t,b] Ï s then s s È { [B t,b] } Classic fixed-point method Halts because s Ì I, the set of all items (finite) Worklist version is faster Closure fills out a state s Generate new lookaheads. See note on p. 128 COMP 412, Fall 2017 1

Computing Gotos Review Goto(s,x) computes the state that the parser would reach if it recognized an x while in state s Goto( { [A b Xd,a] }, X ) produces {[A bx d,a]} (obviously) It finds all such items & uses Closure() to fill out the state The Algorithm Goto( s, X ) new Ø " items [A b Xd,a] Î s new new È {[A bx d,a]} return Closure( new ) Goto( ) models a transition in the automaton Straightforward computation Goto() is not a fixed-point method (but it calls Closure()) COMP Goto412, in this Fall construction 2017 is analogous to Move in the subset construction. 2

Building the Canonical Collection Review Start from s 0 = Closure( [S S,EOF] ) Repeatedly construct new states, until all are found The Algorithm s 0 Closure( { [S S,EOF] } ) S { s 0 } k 1 while (S is still changing) " s j Î S and " x Î (T È NT ) s k Goto(s j,x) record s j s k on x if s k Ï S then S S È { s k } k k + 1 Fixed-point computation Loop adds to S (monotone) S Í 2 ITEMS, so S is finite Worklist version is faster because it avoids duplicated effort This membership / equality test requires careful and/or clever implementation. COMP 412, Fall 2017 3

Filling in the ACTION and GOTO Tables Review The Table Construction Algorithm x is the state number " set S x Î S " item i Î S x if i is [A b ad,b] and goto(s x,a) = S k, a Î T then ACTION[x,a] shift k else if i is [S S,EOF] then ACTION[x,EOF] accept else if i is [A b,a] then ACTION[x,a] reduce A b " n Î NT if goto(s x,n) = S k then GOTO[x,n] k before T Þ shift have Goal Þ accept at end Þ reduce Many items generate no table entry Placeholder before a NT does not generate an ACTION table entry Closure( ) instantiates FIRST(X) directly for [A b Xd, a] COMP 412, Fall 2017 4

Another Example (grammar & sets) Simplified, right recursive expression grammar 0 Goal Expr 1 Expr Term - Expr 2 Term 3 Term Factor * Term 4 Factor 5 Factor id SYMBOL FIRST Goal { id } Expr { id } Term { id } Factor { id } { } * { * } id { id } COMP 412, Fall 2017 5

Simplified Expression Grammar Building the Collection Initialization Step s 0 closure( { [Goal Expr, EOF] } ) { [Goal Expr, EOF], [Expr Term Expr, EOF], [Expr Term, EOF], [Term Factor * Term, EOF], [Term Factor * Term, ], [Term Factor, EOF], [Term Factor, ], [Factor id, EOF], [Factor id, ], [Factor id, *] } S {s 0 } Item in black is the initial item. COMP Items 412, in gray Fall 2017 are added by closure(). 6

Simplified Expression Grammar Building the Collection Iteration 1 s 1 goto(s 0, Expr) s 2 goto(s 0, Term) s 3 goto(s 0, Factor) s 4 goto(s 0, id ) Iteration 2 s 5 goto(s 2, ) s 6 goto(s 3, * ) Iteration 3 s 7 goto(s 5, Expr ) s 8 goto(s 6, Term ) Goal, *, & - generate empty sets Goal, Expr, Term, Factor, & id generate empty sets Goal, *, & - generate empty sets. Term, Factor, & id start to re-create existing sets. COMP 412, Fall 2017 7

Simplified Expression Grammar The Details s 0 closure( {[Goal Expr, EOF]} ) { [Goal Expr, EOF], [Expr Term Expr, EOF], [Expr Term, EOF], [Term Factor * Term, EOF], [Term Factor * Term, ], [Term Factor, EOF], [Term Factor, ], [Factor id, EOF], [Factor id, ], [Factor id, *] } s 1 goto(s 0, Expr) { [Goal Expr, EOF] } s 2 goto(s 0, Term) { [Expr Term Expr, EOF], [Expr Term, EOF] } s 3 goto(s 0, Factor) { [Term Factor * Term, EOF],[Term Factor * Term, ], [Term Factor, EOF], [Term Factor, ] } Items in black are core items, generated by moving the placeholder. COMP Items 412, in gray Fall 2017 are added by closure(). 8

Simplified Expression Grammar The Details s 4 goto(s 0, id) { [Factor id, EOF],[Factor id, ], [Factor id, *] } s 5 goto(s 2, ) { [Expr Term Expr, EOF], [Expr Term Expr, EOF], [Expr Term, EOF], [Term Factor * Term, ], [Term Factor, ], [Term Factor * Term, EOF], [Term Factor, EOF], [Factor id, *], [Factor id, ], [Factor id, EOF] } s 6 goto(s 3, * ) { [Term Factor * Term, EOF], [Term Factor * Term, ], [Term Factor * Term, EOF], [Term Factor * Term, ], [Term Factor, EOF], [Term Factor, ], [Factor id, EOF], [Factor id, ], [Factor id, *] } Items in black are core items, generated by moving the placeholder. COMP Items 412, in gray Fall 2017 are added by closure(). 9

Simplified Expression Grammar The Details s 7 goto(s 5, Expr ) { [Expr Term Expr, EOF] } goto(s 5, Term) recreates s 2 goto(s 5, Factor) recreates s 3 goto(s 5, id) recreates s 4 s 8 goto(s 6, Term ) { [Term Factor * Term, EOF], [Term Factor * Term, ] } goto(s 6, Term ) recreates s 3 goto(s 6, id) recreates s 4 The next iteration creates no new sets. Items in black are core items, generated by moving the placeholder. COMP Items 412, in gray Fall 2017 are added by closure(). 10

Simplified Expression Grammar Recorded Transitions The Goto Relationship (recorded during the construction) State Expr Term Factor - * id s 0 1 2 3 4 s 1 s 2 5 s 3 6 s 4 s 5 7 2 3 4 s 6 8 3 4 s 7 s 8 COMP 412, Fall 2017 11

Simplified Expression Grammar Filling in the Tables The algorithm produces the following tables ACTION GOTO State id - * EOF Expr Term Factor s 0 s 4 1 2 3 s 1 acc s 2 s 5 r 3 s 3 r 5 s 6 r 5 s 4 r 6 r 6 r 6 s 5 s 4 7 2 3 s 6 s 4 8 3 s 7 r 2 s 8 r 4 r 4 COMP 412, Fall 2017 12

Brief Commercial: Why Are We Doing This? <word, category> pairs Skeleton LR Parser Table IR Knowledge encoded in tables to drive skeleton specifications (as a CFG) LR(1) Parser Generator The goal of this exercise is to automate construction of parsers Compiler writer provides a CFG written in modified BNF Tools provide an efficient and correct parser One that works well with an automatically generated scanner LR parser generators accept the largest class of grammars that are deterministically parsable, and they are highly efficient Generated parsers are preferable to hand-coded ones for large grammars COMP 412, Fall 2017 13

3.6.2 in EaC2e Shrinking the ACTION and GOTO Tables Three classic options: Combine terminals such as number & identifier, + & -, * & / Directly removes a column, may remove a row For expression grammar, 198 (vs. 384) table entries Combine rows or columns Implement identical rows once & remap states Requires extra indirection on each lookup Use separate mappings for ACTION & GOTO Use another construction algorithm Both LALR(1) and SLR(1) produce smaller tables LALR(1) represents each state with its core items SLR(1) uses LR(0) items and the FOLLOW set Implementations are readily available COMP 412, Fall 2017 14

Pages 151-153 in EaC2e Shrinking the Grammar The Classic Expression Grammar 0 Goal Expr 1 Expr Expr + Term 2 Expr - Term 3 Term 4 Term Term * Factor 5 Term / Factor 6 Factor 7 Factor ( Expr ) 8 number 9 id Canonical construction produces 32 states 32 x (9 + 3) = 384 ACTION/GOTO entries Large table, but still just 1.5kb Action Table State eof + ( ) num name 0 s 4 s5 s 6 1 acc s 7 s 8 2 r 4 r 4 r 4 s 9 s 10 3 r 7 r 7 r 7 r 7 r 7 4 s 14 s 15 s 16 5 r 9 r 9 r 9 r 9 r 9 6 r 10 r 10 r 10 r 10 r 10 7 s 4 s 5 s 6 8 s 4 s 5 s 6 9 s 4 s 5 s 6 10 s 4 s 5 s 6 11 s 21 s 22 s 23 12 r 4 r 4 s 24 s 25 r 4 13 r 7 r 7 r 7 r 7 r 7 14 s 14 s 15 s 16 15 r 9 r 9 r 9 r 9 r 9 16 r 10 r 10 r 10 r 10 r 10 17 r 2 r 2 r 2 s 9 s 10 18 r 3 r 3 r 3 s 9 s 10 19 r 5 r 5 r 5 r 5 r 5 20 r 6 r 6 r 6 r 6 r 6 21 s 14 s 15 s 16 22 s 14 s 15 s 16 23 r 8 r 8 r 8 r 8 r 8 24 s 14 s 15 s 16 25 s 14 s 15 s 16 26 s 21 s 22 s 31 27 r 2 r 2 s 24 s 25 r 2 28 r 3 r 3 s 24 s 25 r 3 29 r 5 r 5 r 5 r 5 r 5 30 r 6 r 6 r 6 r 6 r 6 31 r 8 r 8 r 8 r 8 r 8 COMP 412, Fall 2017 n FIGURE 3.31 Action Table for the Classic Expression Grammar. 15

Pages 151-153 in EaC2e Shrinking the Grammar We can combine some of the syntactically equivalent symbols Combine + and into AddSub Combine * and / into MulDiv Combine identifier and number into Val 0 Goal Expr 1 Expr Expr AddSub Term 2 Term 3 Term Term MulDiv Factor 4 Factor 5 Factor ( Expr ) 6 Val The Reduced Expression Grammar This grammar has Fewer terminals Fewer productions Which leads to Fewer columns in ACTION Fewer states, which leads to fewer rows in both tables COMP 412, Fall 2017 16

Pages 151-153 in EaC2e Shrinking the Grammar The Resulting Tables 0 Goal Expr 1 Expr Expr AddSub Term 2 Term 3 Term Term MulDiv Factor 4 Factor 5 Factor ( Expr ) 6 Val 22 states 22 * (6 + 3) = 198 ACTION/GOTO entries 48.4% reduction (384-198) / 384 Builds (essentially) the same parse tree Action Table Goto Table eof addsub muldiv ( ) val Expr Term Factor 0 s 4 s 5 1 2 3 1 acc s 6 2 r 3 r 3 s 7 3 r 5 r 5 r 5 4 s 11 s 12 8 9 10 5 r 7 r 7 r 7 6 s 4 s 5 13 3 7 s 4 s 5 14 8 s 15 s 16 9 r 3 s 17 r 3 10 r 5 r 5 r 5 11 s 11 s 12 18 9 10 12 r 7 r 7 r 7 13 r 2 r 2 s 7 14 r 4 r 4 r 4 15 s 11 s 12 19 10 16 r 6 r 6 r 6 17 s 11 s 12 20 18 s 15 s 21 19 r 2 s 17 r 2 20 r 4 r 4 r 4 21 r 6 r 6 r 6 (b) Action and Goto Tables for the Reduced Expression Grammar n FIGURE 3.33 The Reduced Expression Grammar and its Tables. COMP 412, Fall 2017 17

3.6.2 in EaC2e Shrinking the ACTION and GOTO Tables Three classic options: Combine terminals such as number & identifier, + & -, * & / Directly removes a column, may remove a row For expression grammar, 198 (vs. 384) table entries Combine rows or columns Implement identical rows once & remap states Requires extra indirection on each lookup Use separate mappings for ACTION & GOTO Use another construction algorithm Both LALR(1) and SLR(1) produce smaller tables LALR(1) represents each state with its core items SLR(1) uses LR(0) items and the FOLLOW set Implementations are readily available left-recursive expression grammar with precedence, see 3.6.2 in EAC classic space-time tradeoff Fewer grammars, same languages COMP 412, Fall 2017 18

LR(k) versus LL(k) Finding the next step in a derivation LR(k) Þ Each reduction in the parse is detectable with the complete left context, the reducible phrase, itself, and the k terminal symbols to its right generalizations of LR(1) and LL(1) to longer lookaheads LL(k) Þ Parser must select the expansion based on The complete left context The next k terminals Thus, LR(k) examines more context The question is, do languages fall in the gap between LR(k) and LL(k)? COMP 412, Fall 2017 19

Example due to Bill Waite, UC Boulder LR(1) versus LL(1) The following LR(1) grammar has no LL(1) counterpart The Canonical Collection has 18 sets of LR(1) Items It is not a simple grammar It is, however, LR(1) 0 Goal S 1 S A 2 B 3 A ( A ) 4 a 5 B ( B > 6 b It requires an arbitrary lookahead to choose between A & B An LR(1) parser can carry the left context (the ( s) until it sees a or b The table construction will handle it In contrast, an LL(1) parser cannot decide whether to expand Goal by A or B No amount of massaging the grammar and no amount of lookahead will resolve this problem COMP 412, Fall 2017 20 More precisely, the language described by this LR(1) grammar cannot be described with an LL(1) grammar. In fact, the language has no LL(k) grammar, for finite k.

ACTION & GOTO Tables for Waite s Example EOF ( ) a } S A B s 0 s 4 s 5 s 0 1 2 3 s 1 acc s 1 s 2 r 2 s 2 s 3 r 3 s 3 s 4 s 8 s 9 s 4 6 7 s 5 r 5 s 5 0 Start A 1 B 2 A ( A ) 3 a 4 B ( B } 5 a s 6 s 10 s 6 s 7 s 11 s 7 s 8 s 8 s 9 s 8 12 13 s 9 r 5 r 7 s 9 s 10 r 4 s 10 s 11 r 6 s 11 s 12 s 14 s 12 s 13 s 15 s 13 s 14 r 4 s 14 COMP S 15 412, Fall 2017 r 6 S 15 21

LR(k) versus LL(k) Other Non-LL Grammars 0 B R 1 ( B ) 2 R E = E 3 E a 4 b 5 ( E + E ) 0 S a A b 1 c 2 A b S 3 B b 4 B a A 5 c Example from D.E Knuth, Top-Down Syntactic Analysis, Acta Informatica, 1:2 (1971), pages 79-110 Example from Lewis, Rosenkrantz, & Stearns book, Compiler Design Theory, (1976), Figure 13.1 This grammar is actually LR(0) COMP 412, Fall 2017 22

LR(k) versus LL(k) Finding the next step in a derivation LR(k) Þ Each reduction in the parse is detectable with the complete left context, the reducible phrase, itself, and the k terminal symbols to its right LL(k) Þ Parser must select the expansion based on The complete left context The next k terminals Thus, LR(k) examines more context in practice, programming languages do not actually seem to fall in the gap between LL(1) languages and deterministic languages J.J. Horning, LR Grammars and Analysers, in Compiler Construction, An Advanced Course, Springer-Verlag, 1976 COMP 412, Fall 2017 23

Left Recursion versus Right Recursion Right recursion Required for termination in top-down parsers Uses (on average) more stack space Naïve right recursion produces right-associativity Left recursion Works fine in bottom-up parsers Limits required stack space Naïve left recursion produces left-associativity Rule of thumb Left recursion for bottom-up parsers Right recursion for top-down parsers * * w * x z y w * ( x * ( y * z ) ) * * * z y w x ( (w * x ) * y ) * z COMP 412, Fall 2017 24

Left Recursion versus Right Recursion A real example, from the lab 1 ILOC simulator s front end The simulator was built by two of my successful Ph.D.s It is actually a more complex piece of software than you might guess The front end is an LR(1) parser, generated by Bison The grammar contained the following productions: instruction_list : instruction When my colleague first ran the timing blocks through the simulator, it exploded with the error message memory exhausted. What happened? label_def instruction instruction instruction_list label_def instruction instruction_list COMP 412, Fall 2017 25

Left Recursion versus Right Recursion A real example, from the lab 1 simulator s front end instruction_list : instruction label_def instruction instruction instruction_list label_def instruction instruction_list right recursion The parse stack overflowed as it tried to instantiate the instruction_list COMP 412, Fall 2017 26

Left Recursion versus Right Recursion A real example, from the lab 1 simulator s front end instruction_list : instruction label_def instruction instruction instruction_list label_def instruction instruction_list right recursion The parse stack overflowed as it tried to instantiate the instruction_list The fix was easy instruction_list : instruction label_def instruction instruction_list instruction instruction_list label_def instruction left recursion This grammar has (small) bounded stack space & (thus) scales well COMP 412, Fall 2017 See pp. 145-146 in EaC2e 27

Error Detection and Recovery Error Detection Recursive descent Parser takes the last else clause in a routine Compiler writer can code almost any arbitrary action Table-driven LL(1) In state s i facing word x, entry is an error Report the error, valid entries in row for s i encode possibilities Table-driven LR(1) In state s i facing word x, entry is an error Report the error, shift states in row encode possibilities Can precompute better messages from LR(1) items COMP 412, Fall 2017 28

Error Detection and Recovery Error Recovery Table-driven LL(1) Treat as missing token, e.g. ), Þ expand by desired symbol Treat as extra token, e.g., x-+y, Þ pop stack and move ahead Table-driven LR(1) Treat as missing token, e.g. ), Þ shift the token Treat as extra token, e.g., x-+y, Þ don t shift the token Can pre-compute sets of states with appropriate entries COMP 412, Fall 2017 29

Error Detection and Recovery One common strategy is hard token recovery Skip ahead in input until we find some hard token, e.g. ; ; separates statements, makes a logical break in the parse Resynchronize state, stack, and input to point after hard token LL(1): pop stack until we find a row with entry for ; LR(1): pop stack until we find a state with a reduction on ; Does not correct the input, rather it allows parse to proceed NT pop() repeat until Table[NT, ; ] ¹ error NT pop() token NextToken() repeat until token = ; token NextToken() Resynchronizing an LL(1) parser repeat until token = ; shift token shift s e token NextToken() reduce by error production // pops all that state off stack Resynchronizing an LR(1) parser COMP 412, Fall 2017 30

Hierarchy of Context-Free Languages Context-free languages LR(k) º LR(1) Deterministic languages (LR(k)) LL(k) languages Simple precedence languages LL(1) languages Operator precedence languages The inclusion hierarchy for context-free languages COMP 412, Fall 2017 31

Hierarchy of Context-Free Grammars Context-free grammars Floyd-Evans Parsable Unambiguous CFGs Operator Precedence LR(k) LR(1) LALR(1) LL(k) Operator precedence includes some ambiguous grammars Note sub-categories of LR(1) LL(1) is a subset of SLR(1) SLR(1) LL(1) LR(0) The inclusion hierarchy for context-free grammars COMP 412, Fall 2017 32