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

Similar documents
Introduction to Parsing. Comp 412

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

Parsing II Top-down parsing. Comp 412

Syntax Analysis, III Comp 412

Syntax Analysis, III Comp 412

Syntax Analysis, VI Examples from LR Parsing. 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.

CSCI312 Principles of Programming Languages

Bottom-up Parser. Jungsik Choi

Chapter 4: LR Parsing

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

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

CS 406/534 Compiler Construction Parsing Part I

Parsing II Top-down parsing. Comp 412

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

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

Syntactic Analysis. Top-Down Parsing

Parsing Part II. (Ambiguity, Top-down parsing, Left-recursion Removal)

Computing Inside The Parser Syntax-Directed Translation. Comp 412

Building a Parser Part III

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

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

Computer Science 160 Translation of Programming Languages

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

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

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

Types of parsing. CMSC 430 Lecture 4, Page 1

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

Introduction to Parsing

Prelude COMP 181 Tufts University Computer Science Last time Grammar issues Key structure meaning Tufts University Computer Science

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

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

Top-Down Parsing and Intro to Bottom-Up Parsing. Lecture 7

Chapter 4. Lexical and Syntax Analysis

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

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

CS 314 Principles of Programming Languages

Top-Down Parsing and Intro to Bottom-Up Parsing. Lecture 7

EECS 6083 Intro to Parsing Context Free Grammars

Front End. Hwansoo Han

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

Local Register Allocation (critical content for Lab 2) Comp 412

3. Parsing. Oscar Nierstrasz

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

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

Lecture Bottom-Up Parsing

LR Parsing Techniques

Runtime Support for Algol-Like Languages Comp 412

Chapter 3. Parsing #1

CS415 Compilers. Lexical Analysis

CS 406/534 Compiler Construction Putting It All Together

Review of CFGs and Parsing II Bottom-up Parsers. Lecture 5. Review slides 1

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

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

Compiler Construction 2016/2017 Syntax Analysis

Lecture 8: Deterministic Bottom-Up Parsing

Downloaded from Page 1. LR Parsing

Syntax Analysis: Context-free Grammars, Pushdown Automata and Parsing Part - 4. Y.N. Srikant

Monday, September 13, Parsers

CS 4120 Introduction to Compilers

Homework & Announcements

Top down vs. bottom up parsing

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

Lexical and Syntax Analysis. Bottom-Up Parsing

Bottom-Up Parsing II. Lecture 8

Lecture 7: Deterministic Bottom-Up Parsing

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

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

COMP 181. Prelude. Next step. Parsing. Study of parsing. Specifying syntax with a grammar

Formal Languages and Compilers Lecture VII Part 3: Syntactic A

Bottom-Up Parsing. Lecture 11-12

4. Lexical and Syntax Analysis

Bottom-Up Parsing II (Different types of Shift-Reduce Conflicts) Lecture 10. Prof. Aiken (Modified by Professor Vijay Ganesh.

Implementing Control Flow Constructs Comp 412

Compilers. Bottom-up Parsing. (original slides by Sam

Handling Assignment Comp 412

Wednesday, August 31, Parsers

COP4020 Programming Languages. Syntax Prof. Robert van Engelen

Context-free grammars

4. Lexical and Syntax Analysis

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

Syntax Analysis. Amitabha Sanyal. ( as) Department of Computer Science and Engineering, Indian Institute of Technology, Bombay

Academic Formalities. CS Modern Compilers: Theory and Practise. Images of the day. What, When and Why of Compilers

Wednesday, September 9, 15. Parsers

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

Compiler Construction: Parsing

Bottom-Up Parsing. Lecture 11-12

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

Introduction to Parsing. Lecture 8

CS415 Compilers Overview of the Course. These slides are based on slides copyrighted by Keith Cooper, Ken Kennedy & Linda Torczon at Rice University

CA Compiler Construction

Chapter 4. Lexical and Syntax Analysis. Topics. Compilation. Language Implementation. Issues in Lexical and Syntax Analysis.

Syntax Analysis Part I

Parsing #1. Leonidas Fegaras. CSE 5317/4305 L3: Parsing #1 1

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

Outline. Limitations of regular languages. Introduction to Parsing. Parser overview. Context-free grammars (CFG s)

Syntax Analysis Check syntax and construct abstract syntax tree

UNIT III & IV. Bottom up parsing

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

Transcription:

Midterm Exam: Thursday October 18, 7PM Herzstein Amphitheater Syntax Analysis, V Bottom-up Parsing & The Magic of Handles Comp 412 COMP 412 FALL 2018 source code IR Front End Optimizer Back End IR target code Copyright 2018, 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

Lab 2 Schedule Sunday Monday Tuesday Wednesday Thursday Friday Saturday 9 10 11 12 13 14 Lab 2 Specs available 16 17 18 Tutorial 5 PM McMurtr 23 24 Tutorial 5 PM McMurtry 30 1 Deadline: Code Check 2 7 8 Deadline: Lab 2 Code 25 Dan Grove Talk (Dart Group) 19 20 21 Deadline: Code Check 1 15 22 26 27 28 29 2 3 4 5 6 Advice: Pay attention to the timing / scaling tests 9 10 12 Deadline: Lab Report 13 14 Focus on connecting to Lab 1 IR, and Rename Allocate correctly Improve performance & allocation COMP 412, Fall 2018 1

Parsing Techniques Top-down parsers (LL(1), recursive descent) Start at the root of the parse tree and grow toward leaves Pick a production & try to match the input Bad pick Þ may need to backtrack Some grammars are backtrack-free E G E - T Bottom-up parsers (LR(1), operator precedence) Start at the leaves and grow toward root As input is consumed, encode possibilities in an internal state Start in a state valid for legal first tokens We can make the process deterministic T T * F F F <id,y> <id,x> <num,2> Parse tree for x - 2 * y Bottom-up parsers can recognize a strictly larger class of grammars than COMP can 412, top-down Fall 2018 parsers. See exercise 3.12 in EaC2e. 2

Bottom-up Parsing (definitions) The point of parsing is to construct a derivation A derivation consists of a series of rewrite steps S Þ g 0 Þ g 1 Þ g 2 Þ Þ g n 1 Þ g n Þ sentence Each g i is a sentential form If g contains only terminal symbols, g is a sentence in L(G) If g contains 1 or more non-terminals, g is a sentential form To get g i from g i 1, expand some NT A Î g i 1 by using A b Replace the occurrence of A Î g i 1 with b to get g i In a leftmost derivation, it would be the first NT A Î g i 1 A left-sentential form occurs in a leftmost derivation A right-sentential form occurs in a rightmost derivation Bottom-up, LR(1) parsers build a rightmost derivation in reverse COMP 412, Fall 2018 3

Bottom-up Parsing (definitions) A bottom-up parser builds a derivation by working from the input sentence back toward the start symbol S S Þ g 0 Þ g 1 Þ g 2 Þ Þ g n 1 Þ g n Þ sentence To reduce g i to g i 1 match some rhs b against g i then replace b with its corresponding lhs, A (assuming the reduction is A b) In terms of the parse tree, it works from leaves to root Nodes with no parent in a partial tree form its upper fringe Since each replacement of b with A shrinks the upper fringe, we call it a reduction. Rightmost derivation in reverse processes words left to right The parse tree need not be built, it can be simulated bottom-up parse tree nodes = terminal symbols + reductions COMP Shrinks 412, the Fall upper 2018 fringe implies that the terminals are all instantiated, at least implicitly. 4

Finding Reductions Consider the grammar 0 Goal a A B e 1 A A b c 2 b 3 B d And the input string abbcde Sentential Next Reduction Form Prod n Pos n abbcde 2 2 a A bcde 1 4 a A de 3 3 a A B e 0 4 Goal The trick is scanning the input and finding the next reduction. The mechanism for doing this must be efficient. * The reductions are obvious from the derivation. Of course, building the derivation is not a practical way to find it. COMP a b + (bc)* 412, Fall de2018 5

Finding Reductions Consider the grammar 0 Goal a A B e 1 A A b c 2 b 3 B d And the input string abbcde Sentential Next Reduction Form Prod n Pos n abbcde 2 2 a A bcde 1 4 a A de 3 3 a A B e 0 4 Goal The trick is scanning the input and finding the next reduction The mechanism for doing this must be efficient Position specifies where the right end of b occurs in the current sentential form. While the process of finding the next reduction appears to be almost oracular, it can be automated in an efficient way for a large class of grammars. COMP 412, Fall 2018 6

Finding Reductions (Handles) At each step, the parser needs to find a substring b of the tree s upper frontier that derives from an expansion by A b in the previous step in the rightmost derivation Informally, we call this substring b a handle Formally, A handle of a right-sentential form g is a pair <A b,k> where A b Î P and k is the position in g of b s rightmost symbol. If <A b,k> is a handle, then replacing b at k with A produces the right sentential form from which g is derived in the rightmost derivation. Because g is a right-sentential form, the substring to the right of a handle contains only terminal symbols Þ the parser doesn t need to scan (much) past the handle By convention, we will use k to mark the right end of the handle Handles are the most mystifying aspect of bottom-up, shiftreduce parsers. It usually takes a couple lectures to comprehend. COMP 412, Fall 2018 Assume, WLOG, that we can find handles easily 7

Using Handles: a Bottom-up Parser As with top-down parsers, we will use a stack to hold the fringe of the partially completed parse tree. In this case, it is the upper fringe. A simple shift-reduce parser: push INVALID word NextWord( ) repeat until (top of stack = Goal and word = EOF) if the top of the stack forms a handle A b then // reduce b to A pop b symbols off the stack push A onto the stack else if (word ¹ EOF) then push word word NextWord( ) // shift else // need to shift, but out of input report an error report success // accept COMP 412, Fall 2018 What happens on an error? Parser fails to find a handle Thus, it keeps shifting Eventually, it consumes all input This parser reads all input before reporting an error, not a desirable property. To fix this issue, the parser must recognize the failure to find a handle earlier. To make shift-reduce parsers practical, we need good error localization in the handlefinding process. 8

Example 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 The Left-recursive, Left-associative Classic Expression Grammar Bottom-up parsers work with either left-recursive or rightrecursive grammars. The examples will use the obvious left-recursive, leftassociative form of the classic expression grammar. I prefer the obvious left-recursive grammar because its associativity matches the standard rules that we were all taught as children. COMP 412, Fall 2018 9

Example 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 The Left-recursive, Left-associative Classic Expression Grammar derivation Prod n Sentential Form Goal 0 Expr 2 Expr - Term 4 Expr - Term * Factor 9 Expr - Term * <id,y> 6 Expr - Factor * <id,y> 8 Expr - <num,2> * <id,y> 3 Term - <num,2> * <id,y> 6 Factor - <num,2> * <id,y> 9 <id,x> - <num,2> * <id,y> Rightmost derivation of x 2 * y COMP 412, Fall 2018 10

Example 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 The Left-recursive, Left-associative Classic Expression Grammar Prod n Sentential Form Goal 0 Expr 2 Expr - Term 4 Expr - Term * Factor 9 Expr - Term * <id,y> 6 Expr - Factor * <id,y> 8 Expr - <num,2> * <id,y> 3 Term - <num,2> * <id,y> 6 Factor - <num,2> * <id,y> 9 <id,x> - <num,2> * <id,y> Rightmost derivation of x 2 * y parse COMP 412, Fall 2018 11

Example 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 The Left-recursive, Left-associative Classic Expression Grammar Prod n Sentential Form Goal 0 Expr 2 Expr - Term 4 Expr - Term * Factor 9 Expr - Term * <id,y> 6 Expr - Factor * <id,y> 8 Expr - <num,2> * <id,y> 3 Term - <num,2> * <id,y> 6 Factor - <num,2> * <id,y> 9 <id,x> - <num,2> * <id,y> Handles for rightmost derivation of x 2 * y parse COMP 412, Fall 2018 12

Back to x - 2 * y Stack Input Handle Action $ id - num * id none shift $ id - num * id 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 By convention, $ represents INVALID 1. Shift until the top of the stack is the right end of a handle COMP 2. Find 412, the Fall left 2018 end of the handle and reduce 13

Back to x - 2 * y Stack Input Handle Action $ id - num * id none shift $ id - num * id 9,1 reduce 9 $ Factor - num * id 6,1 reduce 6 $ Term - num * id 3,1 reduce 3 $ Expr - num * id 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 1. Shift until the top of the stack is the right end of a handle COMP 2. Find 412, the Fall left 2018 end of the handle and reduce 14

Back to x - 2 * y Stack Input Handle Action $ id - num * id none shift $ id - num * id 9,1 reduce 9 $ Factor - num * id 6,1 reduce 6 $ Term - num * id 3,1 reduce 3 $ Expr - num * id Expr is not a handle at this point because it does not occur at this point in the derivation. While that statement sounds like oracular mysticism, we will see that the decision can be automated efficiently. 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 1. Shift until the top of the stack is the right end of a handle COMP 2. Find 412, the Fall left 2018 end of the handle and reduce 15

Back to x - 2 * y Stack Input Handle Action $ id - num * id none shift $ id - num * id 9,1 reduce 9 $ Factor - num * id 6,1 reduce 6 $ Term - num * id 3,1 reduce 3 $ Expr - num * id none shift $ Expr - num * id none shift $ Expr - num * id 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 1. Shift until the top of the stack is the right end of a handle COMP 2. Find 412, the Fall left 2018 end of the handle and reduce 16

Back to x - 2 * y Stack Input Handle Action $ id - num * id none shift $ id - num * id 9,1 reduce 9 $ Factor - num * id 6,1 reduce 6 $ Term - num * id 3,1 reduce 3 $ Expr - num * id none shift $ Expr - num * id none shift $ Expr - num * id 8,3 reduce 8 $ Expr - Factor * id 6,3 reduce 6 $ Expr - Term * id 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 1. Shift until the top of the stack is the right end of a handle COMP 2. Find 412, the Fall left 2018 end of the handle and reduce 17

Back to x - 2 * y Stack Input Handle Action $ id - num * id none shift $ id - num * id 9,1 reduce 9 $ Factor - num * id 6,1 reduce 6 $ Term - num * id 3,1 reduce 3 $ Expr - num * id none shift $ Expr - num * id none shift $ Expr - num * id 8,3 reduce 8 $ Expr - Factor * id 6,3 reduce 6 $ Expr - Term * id none shift $ Expr - Term * id none shift $ Expr - Term * id 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 1. Shift until the top of the stack is the right end of a handle COMP 2. Find 412, the Fall left 2018 end of the handle and reduce 18

Back to x - 2 * y Stack Input Handle Action $ id - num * id none shift $ id - num * id 9,1 reduce 9 $ Factor - num * id 6,1 reduce 6 $ Term - num * id 3,1 reduce 3 $ Expr - num * id none shift $ Expr - num * id none shift $ Expr - num * id 8,3 reduce 8 $ Expr - Factor * id 6,3 reduce 6 $ Expr - Term * id none shift $ Expr - Term * id none shift $ Expr - Term * id 9,5 reduce 9 $ Expr - Term * Factor 4,5 reduce 4 $ Expr - Term 2,3 reduce 2 $ Expr 0,1 reduce 0 $ Goal none accept 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 5 shifts + 9 reduces + 1 accept COMP 412, Fall 2018 19

Back to x - 2 * y Stack Input Handle Action $ $ Factor id - num * id - num * id none 6,1 shift reduce 6 $ id $ Term - num * id - num * id 9,1 3,1 reduce 9 reduce 3 Goal Expr $ Expr - num * id none shift Expr Term $ Expr - num * id none shift $ Expr - num * id 8,3 reduce Term 8 Term * Fact. $ Expr - Factor * id 6,3 reduce 6 $ Expr - Term * id none shift Fact. Fact. <id,y> $ Expr - Term * id none shift $ Expr - Term * id 9,5 reduce <id,x> 9 <num,2> $ Expr - Term * Factor 4,5 reduce 4 Corresponding Parse Tree $ Expr - Term 2,3 reduce 2 $ Expr 0,1 reduce 0 $ Goal none accept COMP Parse 412, tree Fall nodes 2018 = shifts + reduces Took Parse tree nodes + 1 steps 20

More on Handles Shift reduce parsers find a rightmost derivation in reverse order Rightmost derivation rightmost NT expanded at each step in the derivation Processed in reverse parser proceeds left to right These two statements are somewhat counter-intuitive COMP 412, Fall 2018 21

This slide, with no graphics and lots of text, is actually critical to understanding handles. More on Handles Shift-reduce parsers find a reverse rightmost derivation Process input left to right Upper fringe of partially completed parse tree is (NT T)* T* The handle always appears with its right end at the junction between (NT T)* and T* (the hot spot for LR parsing) We can keep the prefix of the upper fringe of the partially completed parse tree on a stack that is, (NT T)* Handles appear at the top of the stack Right end of handle is always at the top of the stack The stack makes the position information irrelevant All the information for the decision is at the hot spot The next word in the input stream The rightmost NT on the fringe & its immediate left neighbors An LR parser keeps additional information on the stack the state of a handle-recognizing automaton COMP 412, Fall 2018 22

Handles Consider x 2 * y with the expression grammar derivation Sentential Form Goal Expr Expr Term Expr Term * Factor Expr Term * <id,y> Expr Factor * <id,y> Expr <num,2> * <id,y> Term <num,2> * <id,y> Factor <num,2> * <id,y> <id,x> <num,2> * <id,y> parse Unambiguous grammar implies unique rightmost derivation At each step, we have one step that leads to x 2 * y Any other choice leads to another distinct expression A bottom-up parse reverses the rightmost derivation Each step has a unique reduction The key is finding the reduction at each step that leads to the derivation COMP 412, Fall 2018 23

Handles Consider x 2 * y with the expression grammar Sentential Form Goal Expr Expr Term Expr Term * Factor Expr Term * <id,y> Expr Factor * <id,y> Expr <num,2> * <id,y> Term <num,2> * <id,y> Factor <num,2> * <id,y> <id,x> <num,2> * <id,y> Now, look at the sentential forms in the example They have a specific form NT * (NT T)* T* Handles are found in the (NT T )* portion Track right end of region Search left from there Finite set of rhs strings We know that each step has a unique reduction That reduction is the handle COMP 412, Fall 2018 24

Handles Consider x 2 * y with the expression grammar Sentential Form Reduction Handles Goal Expr Goal Expr 0,1 Expr Term Expr Expr Term 2,3 Expr Term * Factor Term Term * Factor 4,5 Expr Term * <id,y> Factor id 9,5 Expr Factor * <id,y> Term Factor 6,3 Expr <num,2> * <id,y> Factor num 8,3 Term <num,2> * <id,y> Expr Term 3,1 Factor <num,2> * <id,y> Term Factor 6,1 <id,x> <num,2> * <id,y> Factor id 9,1 These reductions are handles a production and a COMP 412, Fall 2018 location on the fringe. 25

Finding Reductions We saw this slide earlier. It deserves a second take. (Handles) At each step, the parser needs to find a substring b of the tree s upper frontier that derives from an expansion by A b in the previous step in the rightmost derivation Informally, we call this substring b a handle Formally, A handle of a right-sentential form g is a pair <A b,k> where A b Î P and k is the position in g of b s rightmost symbol. If <A b,k> is a handle, then replacing b at k with A produces the right sentential form from which g is derived in the rightmost derivation. Because g is a right-sentential form, the substring to the right of a handle contains only terminal symbols Þ the parser doesn t need to scan (much) past the handle By convention, we will use k to mark the right end of the handle Handles are the most mystifying aspect of bottom-up, shiftreduce parsers. It usually takes a couple lectures to comprehend. COMP 412, Fall 2018 Assume, WLOG, that we can find handles easily 27

Handles Are Unique Theorem: If G is unambiguous, then every right-sentential form has a unique handle. Sketch of Proof: 1 G is unambiguous Þ rightmost derivation is unique 2 Þ a unique production A b applied to derive g i from g i 1 3 Þ a unique position k at which A b is applied 4 Þ a unique handle <A b,k> This all follows from the definitions If we can find the handles, we can build a derivation! Recall: Right sentential form is a string that appears as one step in a rightmost derivation. The handle always appears with its right end at the stack top. We can make the handles relative to the stack top, which makes the position implicit. Now the handle is just the right RHS at stack top. COMP 412, Fall 2018 28

From Handles to Parsers The sentential forms in the derivation have the form: NT* (NT T )* T* They form the upper fringe of partially completed parse tree The suffix consisting of T* is, at each step, the unread input The first word in the trailing string of terminals is the current word or token The shift-reduce parser operates by: Keeping the portion NT* (NT T)* on a stack Leftmost symbol at bottom of stack, rightmost at stack top Handles always appear with right end at the top of stack The border between NT* (NT T )* and T* is the critical spot Searching for handles from stack top to stack bottom If search fails, shift another terminal onto stack All the info that the parser needs COMP 412, Fall 2018 to decide is at TOS 29

The Critical Lesson about Handles Simply looking for right hand sides that match is not good enough Critical Question: How can we know when we have found a handle without generating lots of different derivations? Answer: We use left context, encoded in the sentential form, left context encoded in a parser state, and a lookahead the next word in the input. (Formally, 1 word beyond the handle.) Parser states are derived by reachability analysis on grammar that resembles the subset construction from Chapter 2. The set of handles is finite we can recognize handles with a DFA Invoke DFA recursively to find terminal symbols as sub goals Store DFA states (at recursive invocation) on the stack as parser state The additional left context is precisely the reason that LR(1) grammars express a superset of the COMP languages 412, Fall 2018 that can be expressed as LL(1) grammars 30

The Critical Lesson about Handles Simply looking for right hand sides that match is not good enough Critical Question: How can we know when we have found a handle without generating lots of different derivations? Answer: We use left context, encoded in the sentential form, left context encoded in a parser state, and a lookahead the next word in the input. (Formally, 1 word beyond the handle.) Parser states are derived by reachability analysis on grammar that resembles the subset construction from Chapter 2. The set of handles is finite we can recognize handles with a DFA Invoke DFA recursively to find terminal symbols as sub goals Store DFA states (at recursive invocation) on the stack as parser state COMP 412, Fall 2018 31