CSE443 Compilers Dr. Carl Alphonce alphonce@buffalo.edu 343 Davis - - PowerPoint PPT Presentation

cse443 compilers
SMART_READER_LITE
LIVE PREVIEW

CSE443 Compilers Dr. Carl Alphonce alphonce@buffalo.edu 343 Davis - - PowerPoint PPT Presentation

CSE443 Compilers Dr. Carl Alphonce alphonce@buffalo.edu 343 Davis Hall http:/ /www.cse.buffalo.edu/faculty/alphonce/SP17 /CSE443/index.php https:/ /piazza.com/class/iybn4ndqa1s3ei Phases of a Syntactic compiler structure Figure 1.6,


slide-1
SLIDE 1

CSE443 Compilers

  • Dr. Carl Alphonce

alphonce@buffalo.edu 343 Davis Hall

http:/ /www.cse.buffalo.edu/faculty/alphonce/SP17 /CSE443/index.php https:/ /piazza.com/class/iybn4ndqa1s3ei

slide-2
SLIDE 2

Phases of a compiler

Figure 1.6, page 5 of text

Syntactic structure

slide-3
SLIDE 3

5

Language terminology

(from Sebesta (10th ed), p. 115)

  • A language is a set of strings of symbols, drawn from

some finite set of symbols (called the alphabet of the language).

  • “The strings of a language are called sentences”
  • “Formal descriptions of the syntax […] do not include

descriptions of the lowest-level syntactic units […] called lexemes.”

  • “A token of a language is a category of its lexemes.”
  • Syntax of a programming language is often presented in

two parts:

– regular grammar for token structure (e.g. structure of identifiers) – context-free grammar for sentence structure

slide-4
SLIDE 4

6

Examples of lexemes and tokens

Lexemes Tokens foo identifier i identifier sum identifier

  • 3

integer_literal 10 integer_literal 1 integer_literal ; statement_separator = assignment_operator

slide-5
SLIDE 5

7

Backus-Naur Form (BNF)

  • Backus-Naur Form (1959)

– Invented by John Backus to describe ALGOL 58, modified by Peter Naur for ALGOL 60 – BNF is equivalent to context-free grammar – BNF is a metalanguage used to describe another language, the object language – Extended BNF: adds syntactic sugar to produce more readable descriptions

slide-6
SLIDE 6

8

BNF Fundamentals

  • Sample rules [p. 128]

<assign> → <var> = <expression> <if_stmt> → if <logic_expr> then <stmt> <if_stmt> → if <logic_expr> then <stmt> else <stmt>

  • non-terminals/tokens surrounded by < and >
  • lexemes are not surrounded by < and >
  • keywords in language are in bold
  • → separates LHS from RHS
  • | expresses alternative expansions for LHS

<if_stmt> → if <logic_expr> then <stmt> | if <logic_expr> then <stmt> else <stmt>

  • = is in this example a lexeme
slide-7
SLIDE 7

9

BNF Rules

  • A rule has a left-hand side (LHS) and a right-hand

side (RHS), and consists of terminal and nonterminal symbols

  • A grammar is often given simply as a set of rules

(terminal and non-terminal sets are implicit in rules, as is start symbol)

slide-8
SLIDE 8

10

Describing Lists

  • There are many situations in which a

programming language allows a list of items (e.g. parameter list, argument list).

  • Such a list can typically be as short as empty
  • r consisting of one item.
  • Such lists are typically not bounded.
  • How is their structure described?
slide-9
SLIDE 9

11

Describing lists

  • The are described using recursive rules.
  • Here is a pair of rules describing a list of

identifiers, whose minimum length is one:

<ident_list> -> ident | ident , <ident_list>

  • Notice that ‘,’ is part of the object language (the

language being described by the grammar).

slide-10
SLIDE 10

12

Derivation of sentences from a grammar

  • A derivation is a repeated application of

rules, starting with the start symbol and ending with a sentence (all terminal symbols)

slide-11
SLIDE 11

13

Recall example 2

G2 = ({a, the, dog, cat, chased}, {S, NP, VP, Det, N, V}, {S à NP VP, NP à Det N, Det à a | the, N à dog | cat, VP à V | VP NP, V à chased}, S)

slide-12
SLIDE 12

14

Example: derivation from G2

  • Example: derivation of the dog chased a cat

S à NP VP à Det N VP à the N VP à the dog VP à the dog V NP à the dog chased NP à the dog chased Det N à the dog chased a N à the dog chased a cat

slide-13
SLIDE 13

15

Example 3

L3 = { 0, 1, 00, 11, 000, 111, 0000, 1111, … } G3 = ( {0, 1}, {S, ZeroList, OneList}, {S à ZeroList | OneList, ZeroList à 0 | 0 ZeroList, OneList à 1 | 1 OneList }, S )

slide-14
SLIDE 14

16

Example: derivations from G3

  • Example: derivation of 0 0 0 0

S à ZeroList à 0 ZeroList à 0 0 ZeroList à 0 0 0 ZeroList à 0 0 0 0

  • Example: derivation of 1 1 1

S à OneList à 1 OneList à 1 1 OneList à 1 1 1

slide-15
SLIDE 15

17

Observations about derivations

  • Every string of symbols in the derivation is

a sentential form.

  • A sentence is a sentential form that has only

terminal symbols.

  • A leftmost derivation is one in which the

leftmost nonterminal in each sentential form is the one that is expanded.

  • A derivation can be leftmost, rightmost, or

neither.

slide-16
SLIDE 16

18

An example programming language grammar fragment

<program> -> <stmt-list> <stmt-list> -> <stmt> | <stmt> ; <stmt-list> <stmt> -> <var> = <expr> <var> -> a | b | c | d <expr> -> <term> + <term> | <term> - <term> <term> -> <var> | const

slide-17
SLIDE 17

19

A leftmost derivation of a = b + const

<program> => <stmt-list> => <stmt> => <var> = <expr> => a = <expr> => a = <term> + <term> => a = <var> + <term> => a = b + <term> => a = b + const

slide-18
SLIDE 18

20

Parse tree

  • A parse tree is an hierarchical representation of a

derivation:

<program> <stmt-list> <stmt> const a <var> = <expr> <var> b <term> + <term>

slide-19
SLIDE 19

21

Parse trees and compilation

  • A compiler builds a parse tree for a program

(or for different parts of a program).

  • If the compiler cannot build a well-formed

parse tree from a given input, it reports a compilation error.

  • The parse tree serves as the basis for

semantic interpretation/translation of the program.

slide-20
SLIDE 20

22

Extended BNF

  • Optional parts are placed in brackets [ ]

<proc_call> -> ident [(<expr_list>)]

  • Alternative parts of RHSs are placed inside

parentheses and separated via vertical bars

<term> -> <term> (+|-) const

  • Repetitions (0 or more) are placed inside braces

{ }

<ident> -> letter {letter|digit}

slide-21
SLIDE 21

23

Comparison of BNF and EBNF

  • sample grammar fragment expressed in BNF

<expr> -> <expr> + <term> | <expr> - <term> | <term> <term> -> <term> * <factor> | <term> / <factor> | <factor>

  • same grammar fragment expressed in EBNF

<expr> -> <term> {(+ | -) <term>} <term> -> <factor> {(* | /) <factor>}

slide-22
SLIDE 22

24

Ambiguity in grammars

  • A grammar is ambiguous if and only if it

generates a sentential form that has two or more distinct parse trees

  • Operator precedence and operator

associativity are two examples of ways in which a grammar can provide an unambiguous interpretation.

slide-23
SLIDE 23

25

Operator precedence ambiguity

The following grammar is ambiguous:

<expr> -> <expr> <op> <expr> | const <op> -> / | -

The grammar treats the '/' and '-' operators equivalently.

slide-24
SLIDE 24

26

An ambiguous grammar for arithmetic expressions

<expr> -> <expr> <op> <expr> | const <op> -> / | -

<expr> <expr> <expr> <expr> <expr> <expr> <expr> <expr> <expr> <expr> <op> <op> <op> <op> const const const const const const

  • /

/ <op>

slide-25
SLIDE 25

28

Disambiguating the grammar

  • If we use the parse tree to indicate precedence levels of the
  • perators, we can remove the ambiguity.
  • The following rules give / a higher precedence than -

<expr> -> <expr> - <term> | <term> <term> -> <term> / const | const <expr> <expr> <term> <term> <term> const const const /

slide-26
SLIDE 26

29

Links to BNF-style grammars for actual programming languages

Below are some links to grammars for real programming languages. Look at how the grammars are expressed.

– http://www.schemers.org/Documents/Standards/R5RS/ – http://www.sics.se/isl/sicstuswww/site/documentation.html

In the ones listed below, find the parts of the grammar that deal with operator precedence.

– http://java.sun.com/docs/books/jls/index.html – http://www.lykkenborg.no/java/grammar/JLS3.html – http://www.enseignement.polytechnique.fr/profs/informatique/Jean- Jacques.Levy/poly/mainB/node23.html – http://www.lrz-muenchen.de/~bernhard/Pascal-EBNF.html

slide-27
SLIDE 27

30

Derivation of 2+5*3 using C grammar

<expression> <conditional-expression> <assignment-expression> <logical-OR-expression> <inclusive-OR-expression> <AND-expression> <logical-AND-expression> <exclusive-OR-expression> <equality-expression> <relational-expression> <shift-expression> <additive-expression> <additive-expression> + <multiplicative-expression> <multiplicative-expression> <cast-expression> <unary-expression> <postfix-expression> <primary-expression> <constant> 2 <multiplicative-expression> <cast-expression> <unary-expression> <postfix-expression> <primary-expression> <constant> 3 <cast-expression> <unary-expression> <postfix-expression> <primary-expression> <constant> 5 *

slide-28
SLIDE 28

31

Recursion and parentheses

  • To generate 2+3*4 or 3*4+2, the parse tree is built

so that + is higher in the tree than *.

  • To force an addition to be done prior to a

multiplication we must use parentheses, as in (2+3)*4.

  • Grammar captures this in the recursive case of an

expression, as in the following grammar fragment:

<expr> à <expr> + <term> | <term> <term> à <term> * <factor> | <factor> <factor> à <variable> | <constant> | “(” <expr> “)”

slide-29
SLIDE 29

Lecture discussion

There are many reasons to study the syntax of programming languages. When learning a new language you need to be able to read a syntax description to be able to write well-formed programs in the language. Understanding at least a little of what a compiler does in translating a program from high-level to low-level forms deepens your understanding of why programming languages are designed the way they are, and equips you to better diagnose subtle bugs in programs. The next slide shows the “evaluation order” remark in the C++ language reference, which alludes to the order being left unspecified to allow a compiler to optimize the code during translation.

32

slide-30
SLIDE 30

Shown on Visualizer

33

C++ Programming Language, 3rd edition. Bjarne Stroustrup. (c) 1997. Page 122.

slide-31
SLIDE 31

A compiler translates high level language statements into a much larger number of low-level statements, and then applies

  • ptimizations. The entire translation process, including
  • ptimizations, must preserve the semantics of the original high-level

program. The next slides shows that different phases of compilation can apply different types of optimizations (some target-independent, some target-dependent). By not specifying the order in which subexpressions are evaluated (left-to-right or right-to-left) a C++ compiler can potentially re-

  • rder the resulting low-level instructions to give a “better” result.

34

slide-32
SLIDE 32

35

Compilers: principles, techniques, and tools (Aho et al) (c) 2007, page 5.

slide-33
SLIDE 33

RL ⊆ CFL

Given a regular language L we can always construct a context free grammar G such that L = 𝓜(G). For every regular langauge L there is an NFA M = (S,∑,𝛆,F ,s0) such that L = 𝓜(M). Build G = (N,T,P,S0) as follows: N = { Ns | s ∈ S } T = { t | t ∈ ∑ } If 𝛆(i,a)=j, then add Ni → a Nj to P If i ∈ F , then add Ni → 𝜁 to P S0 = Nso

slide-34
SLIDE 34

(a|b)*abb

G = ( {A0, A1, A2, A3}, {a, b}, {A0 → a A0, A0 → b A0, A0 → a A1, A1 → b A2, A2 → b A3, A3 → 𝜁}, A0 }

1 2 3 a b b a b

slide-35
SLIDE 35

RL ⊊ CFL

Show that not all CF languages are regular. To do this we only need to demonstrate that there exists a CFL that is not regular. Consider L = { anbn | n ≥ 1 } Claim: L ∈ CFL, L ∉ RL

slide-36
SLIDE 36

RL ⊊ CFL

Proof (sketch): L ∈ CFL: S → aSb | ab L ∉ RL (by contradiction): Assume L is regular. In this case there exists a DFA D=(S,∑,𝛆,F ,s0) such that 𝓜(D) = L. Let k = |S|. Consider a

ib i, where i>k.

Suppose 𝛆(s0, a

i) = sr. Since i>k, not all of the states between

s0 and sr are distinct. Hence, there are v and w, 0 ≤ v < w ≤ k such that sv = sw. In other words, there is a loop. This DFA can certainly recognize a

ib i but it can also

recognize a

jb i, where i ≠ j, by following the loop.

"REGULAR GRAMMARS CANNOT COUNT"