+ All Categories
Home > Documents > SYNTAX ANALYSIS - II

SYNTAX ANALYSIS - II

Date post: 26-Feb-2016
Category:
Upload: mahina
View: 52 times
Download: 0 times
Share this document with a friend
Description:
UNIT - 3. SYNTAX ANALYSIS - II. BOTTOM-UP PARSING. Constructs a parse tree beginning at the leaves and working up towards the root Bottom-up parse for id*id Can handle a larger class of grammars (LR grammars) Suitable for automatic parser generation. BOTTOM-UP PARSING. REDUCTIONS - PowerPoint PPT Presentation
29
SYNTAX ANALYSIS - II UNIT - 3 -Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers
Transcript
Page 1: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

SYNTAX ANALYSIS - II

UNIT - 3

Page 2: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

Constructs a parse tree beginning at the leaves and working up towards the root

Bottom-up parse for id*id

Can handle a larger class of grammars (LR grammars) Suitable for automatic parser generation

BOTTOM-UP PARSING

Page 3: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

REDUCTIONS◦ Bottom-up parsing is the process of “reducing” a string w to the start

symbol of the grammar◦ At each reduction step, a specific substring matching the body of a

production is replaced by the nonterminal at the head of the production◦ Key decisions are when to reduce and what production to apply◦ The previous sequence of reductions can be discussed in terms of

sequence of stringsid * id, F * id, T * id, T * F, T, E

◦ A reduction is the reverse of a step in a derivation where a nonterminal is replaced by the body of one of its productions

◦ The goal is to construct a derivation in reverse

BOTTOM-UP PARSING

idididFidTFTTE

Page 4: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

HANDLE PRUNING◦ A “handle” is a substring that matches the body of a production, and

whose reduction represents one step along the reverse of a rightmost derivation

◦ The handles during the parse of id1 * id2

◦ The leftmost substring that matches the body of some production need not be a handle

BOTTOM-UP PARSING

Page 5: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

HANDLE PRUNING◦ If , then the production in the position

following α is a handle of αβw◦ A handle of a right-sentential form γ is a production A β and a

position of γ where the string β may be found Such that replacing β at that position by A produces the previous right-

sentential form in a rightmost derivation of γ◦ A rightmost derivation in reverse can be obtained by “handle pruning”

Start with a string of terminals w to be parsed. If w is a sentence of the grammar, then let w = γn , where γn is the nth right-

sentential form of some unknown rightmost derivation

BOTTOM-UP PARSING

wAwSrmrm

A

wS nrmnrmrmrmrm 1210 ....

Page 6: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

Stack holds grammar symbols and an input buffer holds the rest of the string to be parsed

The handle always appears at the top of the stack just before it is identified as the handle

Initially the stack is empty, and the string w is on the inputSTACK INPUT$ w$

◦ During left-to-right scan, the parser shifts zero or more input symbols onto the stack until it is ready to reduce a string β on top of the stack

◦ It then reduces β to the head of the appropriate production◦ The parser repeats this until it has detected an error or until stack contains

the start symbol and input is emptySTACK INPUT$S $

The parser now halts and announces successful completion of parsing

Shift-Reduce Parsing

Page 7: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

Configurations of a Shift-Reduce parser on the input string id1 * id2

Shift-Reduce Parsing

Page 8: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

Four actions a shift-reduce parser can make1. Shift

Shift the next input symbol onto the top of the stack2. Reduce

The right end of the string to be reduced must be at the top of the stack Locate the left end of the string within the stack and decide with what

nonterminal to replace the string3. Accept

Announce successful completion of parsing4. Error

Discover a syntax error and call an error recovery routine

Shift-Reduce Parsing

Page 9: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

The use of stack in shift-reduce can be justified by the fact that the handle will always appear on top of the stack and not inside

Shift-Reduce Parsing

xyzBxyzBxAzS

yzByzAzS

rmrmrm

rmrmrm

Page 10: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

There are CFG’s for which shift-reduce parsing cannot be used Every shift-reduce parser for such a grammar can reach a

configuration in which the parser knowing the entire stack contents and next input symbol

◦ Cannot decide whether to shift or to reduce (a shift/reduce conflict)◦ Cannot decide which reductions to make (a reduce/reduce conflict)

Examples◦ Dangling-else grammar

Conflicts During Shift-Reduce Parsing

Page 11: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

LR(k) Parsing◦ “L” : left to right scanning of the input◦ “R” : constructing a rightmost derivation in reverse◦ k : number of input symbols of lookahead used in making parsing decisions

Introduce basic concepts of LR parsing and methods for constructing shift-reduce parsers called “simple LR” (SLR)

Discuss about “items” and “parser states”; the diagnostic output from an LR parser generator includes parser states

Introduction to LR Parsing : Simple LR

Page 12: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

LR Parsers are table-driven like non-recursive LL parsers For a grammar to be LR, it is sufficient that a left-to-right shift-

reduce parser be able to recognize handles of right-sentential forms when they appear on top of the stack

Why LR Parsers?◦ Can be constructed to recognize all programming language constructs for

which CFG’s can be written◦ Most general non-backtracking shift-reduce parsing method and can be

implemented as efficiently as primitive shift-reduce methods◦ Can detect syntactic error as soon as possible on a left-to-right scan◦ Class of grammars that can be parsed using LR methods is a proper superset

of the class of grammars that can be parsed with predictive or LL methods

Why LR Parsers?

Page 13: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

How does a shift-reduce parser know when to shift and to reduce?◦ Example: with stack contents $T and next input symbol *, how does the parser

know that T on top of the stack is not a handle, so action is to shift and not reduce LR parser makes shift-reduce decisions by maintaining states to

keep track of where we are in a parse◦ States represent set of “items”◦ An LR(0) item of a grammar G is a production of G with a dot at some

position of the body of the production◦ So, production A X Y Z yields four items

A . X Y Z A X .Y Z A X Y . Z A X Y Z .

Items and LR(0) Automaton

Page 14: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

An item indicates how much of a production we have seen at a given point in the parsing process

◦ The item A . X Y Z indicates that we hope to see a string derivable from XYZ next on input

◦ Item A X . Y Z indicates that we have just seen a string derivable from X and hope to see a string derivable from Y Z

◦ Item A X Y Z . Indicates that we have seen the body X Y Z and that it may be time to reduce X Y Z to A

Canonical LR(0) collection provides basis for constructing a DFA used to make parsing decisions

◦ Such an automaton is called an LR(0) automaton◦ Each state of the LR(0) automaton represents a set of items in the canonical

LR(0) collection

Items and LR(0) Automaton

Page 15: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

To construct canonical LR(0) collection for a grammar◦ Define an augmented grammar◦ Two functions, CLOSURE and GOTO

If G is a grammar with start symbol S, then G the augmented grammar for G, is G with a new start symbol S and production S S

◦ Purpose of this new production is to indicate to the parser when it should stop parsing and announce acceptance of the input

◦ Acceptance occurs when and only when the parser is about to reduce by S S

Items and LR(0) Automaton

Page 16: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

Closure of Item Sets◦ If I is a set of items for a grammar G, then CLOSURE(I) is the set of items

constructed from I by the two rules1. Initially, add every item in I to CLOSURE(I)2. If A α . B β is in the CLOSURE(I) and B γ is a production, then add the item

B . γ to CLOSURE(I), if it is not already thereApply this rule until no more ne w items can be added to CLOSURE(I)

The set of items can be divided into two classes◦ Kernel items : the initial item , S . S, and all items whose dots are not at

the left end◦ Nonkernel items : all items with their dots at the left end, except for S . S

Items and LR(0) Automaton

Page 17: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

Consider the augmented expression grammar E E E E + T | T T T * F | F F ( E ) | id

I is the set of one item {[E . E]}, then CLOSURE(I) contains the set of items I0

E . E E . E + T E .T T . T * F

T . F F . ( E )

F . id

Items and LR(0) Automaton

Page 18: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

The Function GOTO◦ GOTO(I,X) where I is a set of items and X is a grammar symbol◦ GOTO(I,X) is defined to be the closure of the set of all items [A α X .β]

such that [A α . X β] is in I◦ The GOTO function is used to define the transitions in the LR(0) automaton

for the grammar◦ States of the automaton correspond to sets of items and GOTO(I,X) species

the transition from the state for I under input X If I is the set of two items {[E E .] , [E E . + T]}, then

GOTO(I,+) contains the items E E + . T

T . T * F T . F

F . ( E ) F . id

Items and LR(0) Automaton

Page 19: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

Items and LR(0) Automaton

Page 20: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

LR(0) Automaton for the Expression Grammar

Page 21: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

Central idea behind SLR parsing is the construction of the LR(0) automaton

◦ The states of this automaton are the sets of items from the canonical LR(0) collection

◦ Transitions are given by the GOTO function◦ Start state of the LR(0) automaton is CLOSURE({[S . S]}), where S is

the start symbol of the augmented grammar◦ “state j” refers to the state corresponding to the set of items Ij

How LR(0) automata help with shift-reduce decisions?◦ Suppose that the string γ of grammar symbols takes the LR(0) automaton

from start state 0 to some state j Then, shift on next input symbol a if state j has a transition on a Otherwise, chose to reduce; the items in state j will tell us which production to use

Use of the LR(0) Automaton

Page 22: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

Actions of a shift-reduce parser on input id*id, using the LR(0) automaton

Use of the LR(0) Automaton

Page 23: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

Consists of an input, output, a stack, driver program and a parsing table that has two parts (ACTION and GOTO)

◦ Parsing program reads characters from an input buffer one at a time◦ A shift-reduce parser would shift a symbol, LR parser shifts a state◦ Each state summarizes the information contained in the stack below it

The LR Parsing Algorithm

Page 24: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

Stack holds a sequence of states, s0s1s2… sm, where sm is on top◦ In the SLR method, stack holds states from the LR(0) automaton◦ Each state has a corresponding grammar symbol◦ States correspond to set of items and there is a transition from state i to state j

if GOTO(Ii , X) = Ij

◦ All transitions to state j must be for the same grammar symbol X◦ Thus, each state, except the start state 0, has a unique grammar symbol

associated with it

The LR Parsing Algorithm

Page 25: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

Structure of the LR Parsing Table◦ Parsing table consists of two parts : parsing-action function ACTION and

goto function GOTO1. The ACTION takes as arguments a state i and a terminal a (or $). The value

of ACTION[i,a] can have one of the four forms:a) Shift j, where j is a state. The action taken by the parser shifts input a to the stack,

but uses state j to represent a.b) Reduce A β. The action of the parser reduces β on the top of the stack to the

head A.c) Accept. The parser accepts the input an finishes parsingd) Error. The parser discovers an error in its input an takes some corrective action

2. Extend the GOTO function defined on set of items, to states : if GOTO[Ii , A] = Ij, then GOTO also maps a state i and a nonterminal A to state j.

The LR Parsing Algorithm

Page 26: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

LR-Parser Configurations◦ Have a notation representing the complete state of the parser : its stack and

the remaining input◦ A configuration of an LR Parser is a pair

(s0s1s2… sm , aiai+1… an$)

first component is stack contents and second is the remaining input◦ This configuration represents the right-sentential form

X1X2… Xm aiai+1… an

in a shift-reduce parser

◦ Here, Xi is the grammar symbol represented by state si

◦ State s0, the start state of the parser, does not represent a grammar symbol and serves as the bottom-of-stack marker

The LR Parsing Algorithm

Page 27: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

Behavior of the LR Parser◦ The next move of the parser from the configuration is determined by reading

ai, the current input symbol, and sm, the state at the top of the stack, and then consulting the entry ACTION[sm, ai] in the parsing action table

◦ The configurations after each of the four types of move are as follows:1. If ACTION[sm, ai] = shift s, parser executes a shift move; shifts next state s onto

stack and enters the configuration : (s0s1s2… sm s, ai+1… an$)

2. If ACTION[sm, ai] = reduce A β, parser executes a reduce move, entering the configuration : (s0s1s2… sm-r s, aiai+1… an$)

where r is length of β, and s = GOTO[sm-r ,A]. Here parser popped r state symbols off the stack, exposing state sm-r . Parser then pushed s, the entry for GOTO[sm-r ,A], onto the stack

3. If ACTION[sm, ai] = accept, parsing is completed4. If ACTION[sm, ai] = error, parser has discovered an error and calls an error

recovery routine

The LR Parsing Algorithm

Page 28: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

LR-parsing Program

The LR Parsing Algorithm

Page 29: SYNTAX ANALYSIS - II

-Compiled by: Namratha Nayak www.Bookspar.com | Website for Students | VTU - Notes - Question Papers

Constructing SLR-Parsing Tables


Recommended