Presentation is loading. Please wait.

Presentation is loading. Please wait.

CPSC 325 - Compiler Tutorial 3 Parser. Parsing The syntax of most programming languages can be specified by a Context-free Grammar (CGF) Parsing: Given.

Similar presentations


Presentation on theme: "CPSC 325 - Compiler Tutorial 3 Parser. Parsing The syntax of most programming languages can be specified by a Context-free Grammar (CGF) Parsing: Given."— Presentation transcript:

1 CPSC 325 - Compiler Tutorial 3 Parser

2 Parsing The syntax of most programming languages can be specified by a Context-free Grammar (CGF) Parsing: Given a grammar and a sentence, traverse the derivation (parse tree) for the sentence in some standard order and do something useful at each node. Input

3 Example program statement assignStmt id int expr ifStmt statementexpr idint assignStmt id expr int program ::= statement | program statement statement ::= assignStmt | ifStmt assignStmt ::= id = expr; ifStmt ::= if ( expr ) statement expr ::= id | int | expr + expr id ::= a | b | c | i | … | z int ::= 0 | 1 | … | 9 a=1; if(a+1) b=2;

4 Standard Order When we write a parser, We want the it to be deterministic (no backtracking), and examine the source program from left to right. – (Parse the program in linear time in the order it appears in the source file)

5 Parsing Top-down – Start with the root – Traverse the parse tree depth-first, left-to-right – Left recursive is evil. (example of if-else) Bottom-up – Start at leaves and build up to the root

6 Something Useful At each point (node) in the traversal, perform some semantic action: – Construct nodes of full parse tree (rare) – Construct abstract syntax tree (common) – Construct linear, lower-level representation (more common) – Generate target code on the fly (1-pass compiler; not common in production compilers – can’t generate very good code in one pass)

7 Context-Free Grammars Formally, a grammar G is a 4-tuples where – N: a finite set of non-terminal symbols – T: a finite set of terminal symbols – P: A finite set of productions – S: the start symbol, a distinguished element of N α A γ => α β γ iff A ::= β in P

8 Reduced Grammars Grammar G is reduced iff there is no useless production in G.

9 Ambiguity Grammar G is unambiguous iff every sentence in L(G) has a unique leftmost (or rightmost) derivation – Fact: unique leftmost or unique rightmost implies the other A grammar without this property is ambiguous – Note that other grammars that generate the same language may be unambigious We need unambiguous grammars for parsing

10 Example expr ::= expr + expr | expr – expr | expr * expr | expr / expr | int int ::= 0 | 1 | 2 | … | 9 Exercise: Show that this is ambiguous How? Show two different leftmost or right most derivations for the same string Equivalently: show two different parse trees for the same string

11 Example (cont) Give a leftmost derivation of 2+3*4 and show the parse tree. Give two different derivations of 7+3+1

12 Problem? The grammar has no notion of precedence or associatively Solution: – Create a non-terminal for each level of precedence – Isolate the corresponding part of the grammar – Force the parser to recognize higher precedence sub expressions first

13 Classic Expression Grammar expr ::= expr + term | expr – term | term term ::= term * factor | term / factor | factor factor ::= int | ( expr ) int ::= 0 | 1 | 2 | … | 9 Check 7 + 3 + 2 Check (5 + 3) * 2

14 Another Classic example Grammar for conditional statements...... stmt ::= ifStmt | whileStmt ifStmt ::= if ( cond ) stmt | if ( cond ) stmt lese stmt …… Is this grammar ok?

15 Solving Ambiguity Fix the grammar to separate if statements with else clause and if statement with no elxse - add lots of non-terminals Use some ad-hoc rule in parser - “else matches closest unpaired if”

16 Parser tools Most parser tools can cope with ambiguous grammars Be sure that what the tool does is really what you want. next week we will talk about Bison and more Parsers.


Download ppt "CPSC 325 - Compiler Tutorial 3 Parser. Parsing The syntax of most programming languages can be specified by a Context-free Grammar (CGF) Parsing: Given."

Similar presentations


Ads by Google