• Keine Ergebnisse gefunden

Syntax and Type Analysis

N/A
N/A
Protected

Academic year: 2022

Aktie "Syntax and Type Analysis"

Copied!
6
0
0

Wird geladen.... (Jetzt Volltext ansehen)

Volltext

(1)

Syntax and Type Analysis

Lecture Compilers Summer Term 2011

Prof. Dr. Arnd Poetzsch-Heffter

Software Technology Group TU Kaiserslautern

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 1

Content of Lecture

1. Introduction: Overview and Motivation 2. Syntax- and Type Analysis

2.1Lexical Analysis

2.2Context-Free Syntax Analysis 2.3Context-Dependent Syntax Analysis 3. Translation to Target Language

3.1Translation of Imperative Language Constructs 3.2Translation of Object-Oriented Language Constructs 4. Selected Aspects of Compilers

4.1Intermediate Languages 4.2Optimization

4.3Data Flow Analysis 4.4Register Allocation 4.5Code Generation 5. Garbage Collection

6. XML Processing (DOM, SAX, XSLT)

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 2

2. Syntax and Type Analysis

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 3

Educational Objectives

•Tasks of different syntax analysis phases

•Interaction of syntax analysis phases

•Specification techniques for syntax analysis

•Generation techniques

•Usage of tools

•Lexical analysis

•Context-free analysis (parsing)

•Context-sensitive analysis

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 4

Introduction to Syntax and Type Analysis

Syntax Analysis

Tasks of Syntax Analysis

• Check if input is syntactically correct

• Dependent on result:

I Error message

I Generation of appropriate data structure for subsequent processing

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 5

Introduction to Syntax and Type Analysis

Syntax and Type Analysis Phases

Lexical analysis:

Character stream→token stream(or symbol stream)

Context-free analysis:

Token stream→syntax tree Context-sensitive analysis:

Syntax tree→syntax tree with cross references

Source Code

Scanner

Parser

Name and Type Analysis Character Stream

Token Stream

Syntax Tree

Attributed Syntax Tree

SyntaxandTypeAnalysis

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 6

Introduction to Syntax and Type Analysis

Reasons for Separation of Phases

• Lexical and context-free analysis

I Reduced load for context-free analysis, e.g., whitespaces are not required for context-free analysis

• Context-free and context-sensitive analysis

I Context-sensitive analysis uses tree structure instead of token stream

I Advantages for construction of target data structure

• For both cases

I Increased efficiency

I Natural process (cmp. natural language)

I More appropriate tool support

Lexical Analysis

2.1. Lexical Analysis

(2)

Lexical Analysis

Lexical Analysis

Tasks

• Break input character stream into a token stream wrt. language definition

• Classify tokens into token classes

• Representation of tokens

I Hashing of identifiers

I Conversion of constants

• Elimination of

I whitespaces (spaces, comments...)

I external constructs (compiler directives...)

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 9

Lexical Analysis

Lexical Analysis (2)

Terminology

Token/symbol: a word over an alphabet of characters (often with additional information, e.g. token class, encoding, position..)

Token class: a set of tokens (identifier, constants, ...); correspond to terminal symbols of a context-free grammar

Remark:the termstokenandsymbolrefer to the same concept. The term token is in general used when talking about parsing technology, whereas the term symbol is used when talking about formal languages.

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 10

Lexical Analysis

Lexical Analysis: Example

Input Line 23:

if ( A <= 3.14 ) B = B−−

Token Class String Token Information Col:Row

IF “if” 23:3

OPAR “(” 23:5

ID “A” 72 (Hash) 23:7

RELOP “<=” 4 (Encoding) 23:9

FLOATCONST “3.14” 3,14 (Constant Value) 23:12

CPAR “)” 23:16

ID “B” 84 (Hash) 23:20

. . .

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 11

Lexical Analysis Specification of Scanners

Specification

The specification of the lexical analysis is a part of the language specification.

The two parts of lexical analysis specification:

•Scanning algorithm (often only implicit)

•Specification of tokens and token classes

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 12

Lexical Analysis Specification of Scanners

Examples: Scanning

1. Statement in C

B = B --- A;

Problem: Separation ( - - and - are tokens) Solution: Longest token is chosen, i.e,

B = B -- - A;

2. Java Fragment

class public { public m() {...} }

Problem: Ambiguity (keyword, identifier) Solution: Precedence rules

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 13

Lexical Analysis Specification of Scanners

Standard Scan Algorithm (Concept)

Scanning is often implemented as a procedure:

•Procedure returns next token

•State is remainder of input

•In error cases, returns theUNDEFtoken and updates the input

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 14

Lexical Analysis Specification of Scanners

Standard Scan Algorithm (Pseudo Code)

CharStream inputRest := input;

Token nextToken() {

Token curToken := longestTokenPrefix(inputRest);

inputRest:= cut(curToken, inputRest);

return curToken;

}

wherecutis defined as

• ifcurToken6=UNDEF,curTokenis removed frominputRest

• elseinputRestremains unchanged.

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 15

Lexical Analysis Specification of Scanners

Standard Scan Algorithm (2)

Token longestTokenPrefix(CharStream ir) { require availableChar(ir) > 0

int curLength = 1;

String curPrefix := prefix(curLength,ir);

Token longestToken := UNDEF;

while( curLength <= availableChar(ir)

&& isTokenPrefix(curPrefix) ) { if (isToken(curPrefix) {

longestToken := curPrefix;

}

curLength++;

curPrefix := prefix(curLength,ir);

}

return longestToken;

}

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 16

(3)

Lexical Analysis Specification of Scanners

Standard Scan Algorithm (3)

Predicates to be defined:

isTokenPrefix: String→boolean

isToken: String→boolean Remarks:

• Standard scan algorithm is used in many modern languages, but not, e.g., in FORTRAN because blanks are not special, except in literal tokens, e.g.

I DO 7 I = 1.25 ⇒ “DO 7 I” is an identifier.

I DO 7 I = 1,25 ⇒ “DO” is a keyword.

• Error cases are not handled

• Complete realization oflongestTokenPrefixis discussed later.

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 17

Lexical Analysis Specification of Scanners

Specification of Token Classes

•Token classes are defined byregular expressions(REs).

•REs specify the set of strings, which belong to a certain token class.

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 18

Lexical Analysis Specification of Scanners

Regular Expressions

LetΣbe analphabet, i.e. an non-empty set of characters.Σis the set of all words overΣ,is the empty word.

Definition (Regular expressions, regular languages)

• εis a RE and specifies the languageL={}.

• Eacha∈Σis a RE and specifies the languageL={a}.

• Letrandsbe two RE specifying the languagesRandS, resp.

Then the following are RE and specify the languageL:

I (r|s)withL=R∪S (union)

I rswithL={vw|v∈R,w∈S} (concatenation)

I rwith{v1. . .vn|vi∈R,0≤i≤n} (Kleene star)

The languageL⊆Σis calledregularif there exists RErdefiningL.

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 19

Lexical Analysis Specification of Scanners

Regular Expressions (2)

Remarks:

•L=∅is not regular according to the definition, but is often considered regular.

•Other Operators, e.g. +, ?, ., [] can be defined using the basic operators, e.g.

I r+≡(r r)≡r\ {}

I [aBd]≡a|B|d

I [a−g]≡a|b|c|d|e|f|g

Caution:Regular expressions only define valid tokens and do not specify the program or translation units of a programming language.

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 20

Lexical Analysis Implementation of Scanners

Implementation of Scanners

sequence of regular expressions and actions (input language of scanner generator)

Scanner Generator

scanner program (usually in a programming language)

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 21

Lexical Analysis Implementation of Scanners

Scanner Generator: JFlex

•Typical use of JFlex:

java -jar JFlex.jar Example.jflex javac Yylex.java

Actions are written in Java

•Examples :

1. Regular expression in JFlex [a-zA-Z_0-9] [a-zA-Z_0-9] * 2. JFlex input with abbreviations

ZI = [0-9]

BU = [a-zA-Z_]

BUZI = [a-zA-Z_0-9]

%%

{BU}{BUZI}* { anAction(); }

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 22

Lexical Analysis Implementation of Scanners

A Complete JFlex Example

enum Token { DO, DOUBLE, IDENT, FLOATCONST, STRING;}

%%

%line

%column

%debug

%type Token // declare token type ZI = [0-9]

BU = [a-zA-Z_]

BUZI = [a-zA-Z_0-9]

ZE = [a-zA-Z_0-9!?\]\[\. \t...]

WhiteSpace = [ \t\n]

%%

{WhiteSpace} { }

"double" { return Token.DOUBLE; }

"do" { return Token.DO; } {BU}{BUZI}* { return Token.IDENT; } {ZI}+\.{ZI}+ { return Token.FLOATCONST; }

\"({ZE}|\\\")*\" { return Token.STRING; }

Lexical Analysis Implementation of Scanners

Scanner Generators

•Scanner generation uses the equivalence between

I Regular expressions

I Non-deterministic finite automata (NFA)

I Deterministic finite automata (DFA)

•Construction methods is based in two steps:

I Regular expressions→NFA

I NFA→DFA

(4)

Lexical Analysis Implementation of Scanners

Definition of NFA

Definition (Non-deterministic Finite Automaton) Anon-deterministic finite automatonis defined as a 5-tuple

M= (Σ,Q,∆,q0,F) where

• Σis the input alphabet

• Qis the set of states

• q0∈Qis the initial state

• F⊆Qis the set of final states

• ∆⊆Q×Σ∪ {} ×Qis the transition relation.

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 25

Lexical Analysis Implementation of Scanners

Regular Expressions → NFA

Principle:For each regular sub-expression, construct NFA with one start and end state that accepts the same language.

43

© A. Poetzsch-Heffter, TU Kaiserslautern 25.04.2007

1. Schritt: Reguläre Ausdrücke ! NEA Übersetzungsschema:

!

• a

• (r|s)

• (rs)

• r*

Prinzip: Konstruiere für jeden regulären Teilausdruck NEA mit genau einem Start- und Endzustand, der die gleiche Sprache akzeptiert.

s

0

f

0

s

0

a

s

0

f

0

!

s

1

R f

1

s

2

S f

2

!

! !

s

1

R f

1 !

s

2

S f

2

s

1

R f

1 !

f

0

s

0 !

!

!

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 26

Lexical Analysis Implementation of Scanners

Regular Expressions → NFA (2)

43

© A. Poetzsch-Heffter, TU Kaiserslautern 25.04.2007

1. Schritt: Reguläre Ausdrücke !NEA Übersetzungsschema:

!

• a

• (r|s)

• (rs)

• r*

Prinzip: Konstruiere für jeden regulären Teilausdruck NEA mit genau einem Start- und Endzustand, der die gleiche Sprache akzeptiert.

s0 f0

s0 a

s0 f0

! s1 R f1

s2 S f2

!

! !

s1 R f1 ! s2 S f2

s1 R f1 ! f0

s0 !

!

!

43

© A. Poetzsch-Heffter, TU Kaiserslautern 25.04.2007

1. Schritt: Reguläre Ausdrücke !NEA Übersetzungsschema:

•!

• a

• (r|s)

• (rs)

• r*

Prinzip: Konstruiere für jeden regulären Teilausdruck NEA mit genau einem Start- und Endzustand, der die gleiche Sprache akzeptiert.

s0 f0

s0 a

s0 f0

! s1 R f1

s2 S f2

!

! !

s1 R f1 ! s2 S f2

s1 R f1 ! f0

s0 !

!

!

© A. Poetzsch-Heffter, TU Kaiserslautern 43 25.04.2007

1. Schritt: Reguläre Ausdrücke ! NEA Übersetzungsschema:

•!

• a

• (r|s)

• (rs)

• r*

Prinzip: Konstruiere für jeden regulären Teilausdruck NEA mit genau einem Start- und Endzustand, der die gleiche Sprache akzeptiert.

s0 f0

s0

a

s0 f0

! s1 R f1

s2 S f2

!

! !

s1 R f1 ! s2 S f2

s1 R f1 ! f0

s0 !

!

!

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 27

Lexical Analysis Implementation of Scanners

Example: Construction of NFA

44© A. Poetzsch-Heffter, TU Kaiserslautern25.04.2007

Übersetzung am Beispiel von Folie 41: s0

s1 s5s6s7s8s9s10s11

s2s4 s13s12 s17s16s14s15

d elbuods3o

LZ, TAB BUZI BU ZI ZI.ZI

ZI s18s19

s20ZEs21 s22s23s24

! \s26s25!! !

!!

!

! ! !

! !

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 28

Lexical Analysis Implementation of Scanners

-closure

Functionclosurecomputes the-closure of a set of statess1, . . . ,sn. Definition (-closure)

For an NFAM= (Σ,Q,∆,q0,F)and a stateq∈Q, the-closureofq is defined by

-closure(q) ={p∈Q|p reachable from q via-transitions}

ForS⊆Q, the-closureofSis defined by -closure(S) =[

s∈S

-closure(s)

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 29

Lexical Analysis Implementation of Scanners

Longest Token Prefix with NFA

Token longestTokenPrefix(char[] ir) { // length(ir) > 0

StateSet curState := closure( {s0} );

int curLength := 0;

int tokenLength := undef;

while (curLength <= length(ir) && !isEmptySet(curState) ) { if (contains(curState,FinalState)) {

tokenLength := curLength;

}

curLength++;

curState := closure(successor(curState,ir[curLength]));

}

return token(prefix(ir,tokenLength));

}

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 30

Lexical Analysis Implementation of Scanners

Longest Token Prefix with NFA (2)

Remark:

Problem of ambiguity:

If there are more than one token matching the longest input prefix, proceduretokennondeterministically returns one of them.

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 31

Lexical Analysis Implementation of Scanners

NFA → DFA

Principle:

For each NFA, a DFA can be constructed that accepts the same language. (In general, this does not hold for NFA with output.) Properties of DFA:

•No-transitions

•Transitions are deterministic given the input char

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 32

(5)

Lexical Analysis Implementation of Scanners

NFA → DFA (2)

Definition (Deterministic Finite State Automaton) Adeterministic finite automatonis defined as a 5-tuple

M= (Σ,Q,∆,q0,F) where

• Σis the input alphabet

• Qis the set of states

• q0∈Qis the initial state

• F⊆Qis the set of final states

• ∆ :Q×Σ→Qis the transitionfunction.

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 33

Lexical Analysis Implementation of Scanners

NFA → DFA (3)

Construction: (according to John Myhill)

•The States of the DFA are subsets of NFA states

(powerset construction). Subsets of finite sets are also finite.

•The start state of the DFA is the-closure of theNFAstart state

•The final states of the DFA are the sets of states that contain an NFA final state.

•The successor state of a stateSin the DFA under inputais obtained by

I computing all successorspofq∈Sunderain the NFA

I and adding the-closure ofp

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 34

Lexical Analysis Implementation of Scanners

NFA → DFA (4)

• If working with character classes (e.g. [a-f]), characters and character classes at outgoing transitions must be disjoint.

• Completion of automaton for error handling:

I Insert additional (final) state (nT)

I For each state, add a transition for each character for which no outgoing transition exists to the nonToken state.

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 35

Lexical Analysis Implementation of Scanners

NFA → DFA (5)

Definition (DFA for NFA)

LetM= (Σ,Q,∆,q0,F)be a NFA. Then, the DFAM0corresponding to the NFAMis defined asM0= (Σ,Q0,∆0,q00,F0)where

•the set of states isQ0⊆ P(Q), power set ofQ

•the initial stateq00is the-closure ofq0

•the final states areF0={S⊆Q|S∩F6=∅}

•∆0(S,a) =-closure({p|(q,a,p)∈∆,q∈S})for alla∈Σ.

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 36

Lexical Analysis Implementation of Scanners

Example: DFA

48© A. Poetzsch-Heffter, TU Kaiserslautern25.04.2007

s0,1,2,5,12,14,18

s1 LZ, TAB

LZ, TAB s3,6,13

s4,7,13

s8,13 s13 BU\{d}d

e l b u o

BUZI\{b} BUZI\{u} BUZI\{o}BUZI BUZI\{l}

BUZI\{e}

BUZI s17s16s15

ZI ZI.ZI

ZI s19,20,22,25s19,20,21,22,25 s26 s19,20,21,22,23,25s19,20,22,24,25,26

s9,13 s10,13

s11,13 ZE \ ““\

ZE “ “\ZEZE \

ksWg. Übersichtlichkeit Kanten zu ks nur angedeutet.

Transitions to nT sketched.

nT

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 37

Lexical Analysis Implementation of Scanners

Longest Token Prefix with DFA

Token longestTokenPrefix(char[] ir) { // length(ir) > 0

State curState : = StartState;

int curLength := 0;

int tokenLength := undef;

while (curLength <= length(ir) && curState != nT) if (curState is FinalState) {

tokenLength := curLength;

}

curLength++;

curState := successor(curState,ir[curLength]));

}

return token(prefix(ir,tokenLength));

}

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 38

Lexical Analysis Implementation of Scanners

Longest Token Prefix with DFA (2)

Remarks:

• Computation of closure at construction time, not at runtime.

(Principle: Do as much statically as you can!)

• Problem of ambiguity still not solved. However, many scanner generators allows the user to control which token is returned. For example, JFlex returns the token of the first rule in the JFlex file that matches the longest input prefix.

Lexical Analysis Implementation of Scanners

Longest Token Prefix with DFA (3)

Implementation Aspects:

•Constructed DFA can be minimized.

•Input buffering is important: often use of cyclic arrays (caution with maximal token length, e.g. in case of comments)

•Encode DFA in table

•Choose suitable partitioning of alphabet in order to reduce number of transitions (i.e. size of table)

•Interface with parser: usually parser asks proactively for next token

(6)

Lexical Analysis Implementation of Scanners

Recommended Reading

• Wilhelm, Maurer: Chap. 7, pp. 239-269 (More theoretical)

• Appel: Chap 2, pp. 16 - 37 (More practical) Additional Reading:

• Aho, Sethi, Ullman: Chap. 3 (very detailed)

Prof. Dr. Arnd Poetzsch-Heffter Syntax and Type Analysis 41

Referenzen

ÄHNLICHE DOKUMENTE

Möglicherweise wurde Ihre im Antragsformular angegebene Mobilnummer nicht korrekt registriert oder Sie haben Sie sich zwischenzeitlich eine neue Mobilnummer zugelegt und diese

Hinweis: Bei Problemen mit der Aktivierung des Tokens senden Sie bitte eine E-Mail mit dem Betreff «sesamvote: Anmeldung» an die Mailadresse helpdesk@bl.ch.. Die Zentrale Informatik

If there are more than one token matching the longest input prefix, procedure token nondeterministically returns one of them... Lexical Analysis Implementation

If there are more than one token matching the longest input prefix, procedure token nondeterministically returns one of them... Lexical Analysis Implementation

If there are more than one token matching the longest input prefix, procedure token nondeterministically returns one of

If there are more than one token matching the longest input prefix, one of these tokens is returned by the function symbol. Ina Schaefer Syntax and Type

This document describes the implementation of a Token-Ring Gateway in remote models of the IBM 3174 Subsystem Control Unit and examines some of the performance and

The originating station sends a TEST or XID command LPDU on the local ring with the address of the destination in the destination address field and to the null SAP