Introduction to Bottom-Up Parsing

Similar documents
Introduction to Bottom-Up Parsing

Introduction to Bottom-Up Parsing

Introduction to Bottom-Up Parsing

Top-Down Parsing and Intro to Bottom-Up Parsing

Lecture VII Part 2: Syntactic Analysis Bottom-up Parsing: LR Parsing. Prof. Bodik CS Berkley University 1

Administrivia. Test I during class on 10 March. Bottom-Up Parsing. Lecture An Introductory Example

Ambiguity, Precedence, Associativity & Top-Down Parsing. Lecture 9-10

CSE302: Compiler Design

n Top-down parsing vs. bottom-up parsing n Top-down parsing n Introduction n A top-down depth-first parser (with backtracking)

Creating a Recursive Descent Parse Table

Parsing Algorithms. CS 4447/CS Stephen Watt University of Western Ontario

Syntax Analysis Part I

Syntax Analysis Part III

Syntactic Analysis. Top-Down Parsing

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

Parsing -3. A View During TD Parsing

CMSC 330: Organization of Programming Languages. Pushdown Automata Parsing

Syntax Analysis Part I

Compiler Principles, PS4

Exercises. Exercise: Grammar Rewriting

Syntax Analysis Part I. Position of a Parser in the Compiler Model. The Parser. Chapter 4

Shift-Reduce parser E + (E + (E) E [a-z] In each stage, we shift a symbol from the input to the stack, or reduce according to one of the rules.

CS415 Compilers Syntax Analysis Top-down Parsing

I 1 : {S S } I 2 : {S X ay, Y X } I 3 : {S Y } I 4 : {X b Y, Y X, X by, X c} I 5 : {X c } I 6 : {S Xa Y, Y X, X by, X c} I 7 : {X by } I 8 : {Y X }

Computer Science 160 Translation of Programming Languages

CS 406: Bottom-Up Parsing

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

Bottom-Up Parsing. Ÿ rm E + F *idÿ rm E +id*idÿ rm T +id*id. Ÿ rm F +id*id Ÿ rm id + id * id

Predictive parsing as a specific subclass of recursive descent parsing complexity comparisons with general parsing

Compiler Construction Lent Term 2015 Lectures (of 16)

Compiler Construction Lent Term 2015 Lectures (of 16)

Follow sets. LL(1) Parsing Table

Compiler Design Spring 2017

CONTEXT FREE GRAMMAR AND

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

CS 314 Principles of Programming Languages

Context free languages

Computing if a token can follow

Syntax Analysis (Part 2)

Compiler Principles, PS7

LR2: LR(0) Parsing. LR Parsing. CMPT 379: Compilers Instructor: Anoop Sarkar. anoopsarkar.github.io/compilers-class

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

Compilerconstructie. najaar Rudy van Vliet kamer 124 Snellius, tel rvvliet(at)liacs.

CA Compiler Construction

Bottom up parsing. General idea LR(0) SLR LR(1) LALR To best exploit JavaCUP, should understand the theoretical basis (LR parsing);

CS153: Compilers Lecture 5: LL Parsing

Compiling Techniques

Announcement: Midterm Prep

Context-free Grammars and Languages

CISC4090: Theory of Computation

Lecture 11 Sections 4.5, 4.7. Wed, Feb 18, 2009

Bottom-Up Syntax Analysis

Bottom-up syntactic parsing. LR(k) grammars. LR(0) grammars. Bottom-up parser. Definition Properties

Syntax Analysis - Part 1. Syntax Analysis

Top-Down Parsing, Part II

THEORY OF COMPILATION

The Parser. CISC 5920: Compiler Construction Chapter 3 Syntactic Analysis (I) Grammars (cont d) Grammars

Syntactical analysis. Syntactical analysis. Syntactical analysis. Syntactical analysis

Computability Theory

Harvard CS 121 and CSCI E-207 Lecture 10: Ambiguity, Pushdown Automata

CSE 105 THEORY OF COMPUTATION

EXAM. Please read all instructions, including these, carefully NAME : Problem Max points Points 1 10 TOTAL 100

CSE 105 THEORY OF COMPUTATION

LL(1) Grammar and parser

Compiler Construction Lectures 13 16

Pushdown Automata (Pre Lecture)

Compiling Techniques

Introduction to Theory of Computing

Pushdown Automata: Introduction (2)

Announcements. H6 posted 2 days ago (due on Tue) Midterm went well: Very nice curve. Average 65% High score 74/75

(pp ) PDAs and CFGs (Sec. 2.2)

CS20a: summary (Oct 24, 2002)

LR(1) Parsers Part III Last Parsing Lecture. Copyright 2010, Keith D. Cooper & Linda Torczon, all rights reserved.

Bottom-up syntactic parsing. LR(k) grammars. LR(0) grammars. Bottom-up parser. Definition Properties

Context-Free Grammars (and Languages) Lecture 7

Bottom-up syntactic parsing. LR(k) grammars. LR(0) grammars. Bottom-up parser. Definition Properties

October 6, Equivalence of Pushdown Automata with Context-Free Gramm

Computational Models - Lecture 4

This lecture covers Chapter 5 of HMU: Context-free Grammars

CSC 4181Compiler Construction. Context-Free Grammars Using grammars in parsers. Parsing Process. Context-Free Grammar

THEORY OF COMPUTATION (AUBER) EXAM CRIB SHEET

Compiler Design 1. LR Parsing. Goutam Biswas. Lect 7

Talen en Compilers. Johan Jeuring , period 2. October 29, Department of Information and Computing Sciences Utrecht University

Theory of Computation (VI) Yijia Chen Fudan University

INF5110 Compiler Construction

CPSC 421: Tutorial #1

Compiling Techniques

5 Context-Free Languages

CS415 Compilers Syntax Analysis Bottom-up Parsing

Pushdown Automata. We have seen examples of context-free languages that are not regular, and hence can not be recognized by finite automata.

Context-Free Grammars and Languages. Reading: Chapter 5

Everything You Always Wanted to Know About Parsing

LR(1) Parsers Part II. Copyright 2010, Keith D. Cooper & Linda Torczon, all rights reserved.

Harvard CS 121 and CSCI E-207 Lecture 10: CFLs: PDAs, Closure Properties, and Non-CFLs

Parsing VI LR(1) Parsers

MA/CSSE 474 Theory of Computation

Properties of Context-Free Languages. Closure Properties Decision Properties

Pushdown Automata (2015/11/23)

Foundations of Informatics: a Bridging Course

FORMAL LANGUAGES, AUTOMATA AND COMPUTABILITY

Transcription:

Outline Introduction to Bottom-Up Parsing Review LL parsing Shift-reduce parsing he LR parsing algorithm Constructing LR parsing tables Compiler Design 1 (2011) 2 op-down Parsing: Review op-down parsing expands a parse tree from the start symbol to the leaves Always expand the leftmost non-terminal op-down Parsing: Review op-down parsing expands a parse tree from the start symbol to the leaves Always expand the leftmost non-terminal * he leaves at any po form a string βaγ β contains only terminals he input string is βbδ he prefix β matches he next token is b * * Compiler Design 1 (2011) 3 Compiler Design 1 (2011) 4

op-down Parsing: Review op-down parsing expands a parse tree from the start symbol to the leaves Always expand the leftmost non-terminal op-down Parsing: Review op-down parsing expands a parse tree from the start symbol to the leaves Always expand the leftmost non-terminal * he leaves at any po form a string βaγ β contains only terminals he input string is βbδ he prefix β matches he next token is b * he leaves at any po form a string βaγ β contains only terminals he input string is βbδ he prefix β matches he next token is b * * Compiler Design 1 (2011) 5 Compiler Design 1 (2011) 6 Predictive Parsing: Review A predictive parser is described by a table For each non-terminal A and for each token b we specify a production A α When trying to expand A we use A αif b follows next Once we have the table he parsing algorithm is simple and fast No backtracking is necessary Constructing Predictive Parsing ables 1. Consider the state S * βaγ With b the next token rying to match βbδ here are two possibilities: b belongs to an expansion of A Any A αcan be used if b can start a string derived from α We say that b First(α) Or Compiler Design 1 (2011) 7 Compiler Design 1 (2011) 8

Constructing Predictive Parsing ables (Cont.) 2. b does not belong to an expansion of A he expansion of A is empty and b belongs to an expansion of γ Means that b can appear after A in a derivation of the form S * βabω We say that b Follow(A) in this case What productions can we use in this case? Any A α can be used if α can expand to ε We say that ε First(A) in this case Computing First Sets Definition First(X) = { b X * bα } { ε X * ε } Algorithm sketch 1. First(b) = { b } 2. ε First(X) if X εis a production 3. ε First(X) if X A 1 A n and ε First(A i ) for 1 i n 4. First(α) First(X) if X A 1 A n α and ε First(A i ) for 1 i n Compiler Design 1 (2011) 9 Compiler Design 1 (2011) 10 First Sets: xample Recall the grammar X X ε ( ) Y Y * ε First sets First( ( ) = { ( } First( ) = {, ( } First( ) ) = { ) } First( ) = {, ( } First( ) = { } First( X ) = {, ε } First( ) = { } First( Y ) = {*, ε } First( * ) = { * } Computing Follow Sets Definition Follow(X) = { b S * β X b δ } Intuition If X A B then First(B) Follow(A) and Follow(X) Follow(B) Also if B * ε then Follow(X) Follow(A) If S is the start symbol then $ Follow(S) Compiler Design 1 (2011) 11 Compiler Design 1 (2011) 12

Computing Follow Sets (Cont.) Algorithm sketch 1. $ Follow(S) 2. First(β) - {ε} Follow(X) For each production A αx β 3. Follow(A) Follow(X) For each production A αx β where ε First(β) Follow Sets: xample Recall the grammar X X ε ( ) Y Y * ε Follow sets Follow( ) = {, ( } Follow( * ) = {, ( } Follow( ( ) = {, ( } Follow( ) = { ), $ } Follow( X ) = { $, ) } Follow( ) = {, ), $ } Follow( ) ) = {, ), $ } Follow( Y ) = {, ), $ } Follow( ) = { *,, ), $ } Compiler Design 1 (2011) 13 Compiler Design 1 (2011) 14 Constructing LL(1) Parsing ables Construct a parsing table for CFG G For each production A αin G do: For each terminal b First(α) do [A, b] = α If ε First(α), for each b Follow(A) do [A, b] = α If ε First(α) and $ Follow(A) do [A, $] = α Constructing LL(1) ables: xample Recall the grammar X X ε ( ) Y Y * ε Where in the line of Y we put Y *? In the lines of First( *) = { * } Where in the line of Y we put Y ε? In the lines of Follow(Y) = { $,, ) } Compiler Design 1 (2011) 15 Compiler Design 1 (2011) 16

Notes on LL(1) Parsing ables If any entry is multiply defined then G is not LL(1) If G is ambiguous If G is left recursive If G is not left-factored And in other cases as well Bottom Up Parsing For some grammars there is a simple parsing strategy: Predictive parsing Most programming language grammars are not LL(1) hus, we need more powerful parsing strategies Compiler Design 1 (2011) 17 Bottom-Up Parsing Bottom-up parsing is more general than topdown parsing And just as efficient Builds on ideas in top-down parsing Preferred method in practice Also called LR parsing L means that tokens are read left to right R means that it constructs a rightmost derivation! An Introductory xample LR parsers don t need left-factored grammars and can also handle left-recursive grammars Consider the following grammar: ( ) Why is this not LL(1)? Consider the string: ( ) ( ) Compiler Design 1 (2011) 19 Compiler Design 1 (2011) 20

he Idea LR parsing reduces a string to the start symbol by inverting productions: A Bottom-up Parse in Detail (1) () () str w input string of terminals repeat Identify β in str such that A βis a production (i.e., str = α βγ) Replace β by A in str (i.e., str w = α A γ) until str = S (the start symbol) OR all possibilities are exhausted ( ) ( ) Compiler Design 1 (2011) 21 Compiler Design 1 (2011) 22 A Bottom-up Parse in Detail (2) A Bottom-up Parse in Detail (3) () () () () () () () () () () ( ) ( ) ( ) ( ) Compiler Design 1 (2011) 23 Compiler Design 1 (2011) 24

A Bottom-up Parse in Detail (4) A Bottom-up Parse in Detail (5) () () () () () () () () () () () () () () () ( ) ( ) ( ) ( ) Compiler Design 1 (2011) 25 Compiler Design 1 (2011) 26 A Bottom-up Parse in Detail (6) Important Fact #1 () () () () () () () () Important Fact #1 about bottom-up parsing: An LR parser traces a rightmost derivation in reverse A rightmost derivation in reverse ( ) ( ) Compiler Design 1 (2011) 27 Compiler Design 1 (2011) 28

Where Do Reductions Happen Important Fact #1 has an eresting consequence: Let αβγ be a step of a bottom-up parse Assume the next reduction is by using A β hen γ is a string of terminals Why? Because αaγ αβγis a step in a rightmost derivation Notation Idea: Split string o two substrings Right substring is as yet unexamined by parsing (a string of terminals) Left substring has terminals and non-terminals he dividing po is marked by a I he I is not part of the string Initially, all input is unexamined: Ix 1 x 2... x n Compiler Design 1 (2011) 29 Compiler Design 1 (2011) 30 Shift-Reduce Parsing Bottom-up parsing uses only two kinds of actions: Shift Shift Shift: Move I one place to the right Shifts a terminal to the left string (I ) ( I ) Reduce In general: ABC I xyz ABCx I yz Compiler Design 1 (2011) 31 Compiler Design 1 (2011) 32

Reduce Reduce: Apply an inverse production at the right end of the left string If ( ) is a production, then Shift-Reduce xample I () ()$ shift ( ) ( ( ) I ) ( I ) In general, given A xy, then: Cbxy I ijk CbA I ijk ( ) ( ) Compiler Design 1 (2011) 33 Shift-Reduce xample Shift-Reduce xample ( ) ( ) I () ()$ shift I () ()$ shift I () ()$ reduce I () ()$ reduce I () ()$ shift 3 times ( ) ( ) ( ) ( )

Shift-Reduce xample Shift-Reduce xample I () ()$ shift ( ) I () ()$ shift ( ) I () ()$ reduce I () ()$ shift 3 times ( I ) ()$ reduce I () ()$ reduce I () ()$ shift 3 times ( I ) ()$ reduce ( I ) ()$ shift ( ) ( ) ( ) ( ) Shift-Reduce xample Shift-Reduce xample I () ()$ shift ( ) I () ()$ shift ( ) I () ()$ reduce I () ()$ shift 3 times ( I ) ()$ reduce ( I ) ()$ shift () I ()$ reduce () I () ()$ reduce I () ()$ shift 3 times ( I ) ()$ reduce ( I ) ()$ shift () I ()$ reduce () I ()$ shift 3 times ( ) ( ) ( ) ( )

Shift-Reduce xample Shift-Reduce xample I () ()$ shift I () ()$ reduce I () ()$ shift 3 times ( I ) ()$ reduce ( I ) ()$ shift () I ()$ reduce () I ()$ shift 3 times ( I )$ reduce ( ) I () ()$ shift I () ()$ reduce I () ()$ shift 3 times ( I ) ()$ reduce ( I ) ()$ shift () I ()$ reduce () I ()$ shift 3 times ( I )$ reduce ( I )$ shift ( ) ( ) ( ) ( ) ( ) Shift-Reduce xample Shift-Reduce xample I () ()$ shift I () ()$ reduce I () ()$ shift 3 times ( I ) ()$ reduce ( I ) ()$ shift () I ()$ reduce () I ()$ shift 3 times ( I )$ reduce ( I )$ shift () I $ reduce () ( ) ( ) ( ) I () ()$ shift I () ()$ reduce I () ()$ shift 3 times ( I ) ()$ reduce ( I ) ()$ shift () I ()$ reduce () I ()$ shift 3 times ( I )$ reduce ( I )$ shift () I $ reduce () I $ accept ( ) ( ) ( )

he Stack Left string can be implemented by a stack op of the stack is the I Shift pushes a terminal on the stack Reduce pops 0 or more symbols off of the stack (production RHS) and pushes a nonterminal on the stack (production LHS) Key Question: o Shift or to Reduce? Idea: use a finite automaton (DFA) to decide when to shift or reduce he input is the stack he language consists of terminals and non-terminals We run the DFA on the stack and we examine the resulting state X and the token tok after I If X has a transition labeled tok then shift If X is labeled with A βon tok then reduce Compiler Design 1 (2011) 45 Compiler Design 1 (2011) 46 accept on $ LR(1) Parsing: An xample 0 1 2 3 ( 4 7 ) () on $, 8 10 6 ) ( 5 11 on $, 9 on ), () on ), I () ()$ shift I () ()$ I () ()$ shift(x3) ( I ) ()$ ( I ) ()$ shift () I ()$ () I ()$ shift (x3) ( I )$ ( I )$ shift () I $ () I $ accept Representing the DFA Parsers represent the DFA as a 2D table Recall table-driven lexical analysis Lines correspond to DFA states Columns correspond to terminals and nonterminals ypically columns are split o: hose for terminals: action table hose for non-terminals: goto table Compiler Design 1 (2011) 48

Representing the DFA: xample he LR Parsing Algorithm he table for a fragment of our DFA: ( 3 4 6 ) 7 () on $, 5 on ), ( ) $ 3 s4 4 s5 g6 5 r r 6 s8 s7 7 r () r () Compiler Design 1 (2011) 49 After a shift or reduce action we rerun the DFA on the entire stack his is wasteful, since most of the work is repeated Remember for each stack element on which state it brings the DFA LR parser maains a stack sym 1, state 1... sym n, state n state k is the final state of the DFA on sym 1 sym k Compiler Design 1 (2011) 50 he LR Parsing Algorithm Let I = w$ be initial input Let j = 0 Let DFA state 0 be the start state Let stack = dummy, 0 repeat case action[top_state(stack), I[j]] of shift k: push I[j], k reduce X A: pop A pairs, push X, Goto[top_state(stack), X] accept: halt normally error: halt and report error LR Parsers Can be used to parse more grammars than LL Most programming languages grammars are LR LR Parsers can be described as a simple table here are tools for building the table How is the table constructed? Compiler Design 1 (2011) 51 Compiler Design 1 (2011) 52