1 / 16

CPSC 325 - Compiler

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

Télécharger la présentation

CPSC 325 - Compiler

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CPSC 325 - Compiler Tutorial 3 Parser

  2. Parsing Input • 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.

  3. 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 Example program program statement statement ifStmt assignStmt expr statement assignStmt id expr expr expr expr int id int id int a = 1 ; if ( a + 1 ) b = 2 ;

  4. 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) Standard Order

  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 <N,T,P,S> 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.

More Related