Presentation is loading. Please wait.

Presentation is loading. Please wait.

Compiler Principles Winter 2012-2013 Compiler Principles Lexical Analysis (Scanning) Mayer Goldberg and Roman Manevich Ben-Gurion University.

Similar presentations


Presentation on theme: "Compiler Principles Winter 2012-2013 Compiler Principles Lexical Analysis (Scanning) Mayer Goldberg and Roman Manevich Ben-Gurion University."— Presentation transcript:

1 Compiler Principles Winter 2012-2013 Compiler Principles Lexical Analysis (Scanning) Mayer Goldberg and Roman Manevich Ben-Gurion University

2 General stuff Topics taught by me Lexical analysis (scanning) Syntax analysis (parsing) … Dataflow analysis Register allocation Slides will be available from web-site after lecture Request: please mute mobiles, tablets, super-cool squeaking devices 2

3 Today Understand role of lexical analysis Lexical analysis theory Implementing modern scanner 3

4 Role of lexical analysis First part of compiler front-end Convert stream of characters into stream of tokens Split text into most basic meaningful strings Simplify input for syntax analysis 4 High-level Language (scheme) Executable Code Lexical Analysis Syntax Analysis Parsing ASTSymbol Table etc. Inter. Rep. (IR) Code Generation

5 From scanning to parsing 5 5 + (7 * x) )id*num(+ Lexical Analyzer program text token stream Parser Grammar: E  id E  num E  E + E E  E * E E  ( E ) + num x * Abstract Syntax Tree valid syntax error

6 Javascript example 6 var currOption = 0; // Choose content to display in lower pane. function choose ( id ) { var menu = ["about-me", "publications", "teaching", "software", "activities"]; for (i = 0; i < menu.length; i++) { currOption = menu[i]; var elt = document.getElementById(currOption); if (currOption == id && elt.style.display == "none") { elt.style.display = "block"; } else { elt.style.display = "none"; } Identify basic units in this code

7 Javascript example 7 var currOption = 0; // Choose content to display in lower pane. function choose ( id ) { var menu = ["about-me", "publications", "teaching", "software", "activities"]; for (i = 0; i < menu.length; i++) { currOption = menu[i]; var elt = document.getElementById(currOption); if (currOption == id && elt.style.display == "none") { elt.style.display = "block"; } else { elt.style.display = "none"; } Identify basic units in this code

8 Javascript example Identify basic units in this code 8 var currOption = 0; // Choose content to display in lower pane. function choose ( id ) { var menu = ["about-me", "publications", "teaching", "software", "activities"]; for (i = 0; i < menu.length; i++) { currOption = menu[i]; var elt = document.getElementById(currOption); if (currOption == id && elt.style.display == "none") { elt.style.display = "block"; } else { elt.style.display = "none"; } keyword numeric literal operator string literal punctuation identifier whitespace

9 Scanner output 9 var currOption = 0; // Choose content to display in lower pane. function choose ( id ) { var menu = ["about-me", "publications“, "teaching", "software", "activities"]; for (i = 0; i < menu.length; i++) { currOption = menu[i]; var elt = document.getElementById(currOption); if (currOption == id && elt.style.display == "none") { elt.style.display = "block"; } else { elt.style.display = "none"; } 1: VAR 1: ID(currOption) 1: EQ 1: INT_LITERAL(0) 1: SEMI 3: FUNCTION 3: ID(choose) 3: LP 3: ID(id) 3: EP 3: LCB... Stream of Tokens LINE: ID(value)

10 What is a token? Lexeme – substring of original text constituting an identifiable unit Identifiers, Values, reserved words, … Record type storing: Kind Value (when applicable) Start-position/end-position Any information that is useful for the parser Different for different languages 10

11 C++ example 1 Splitting text into tokens can be tricky How should the code below be split? 11 vector > myVector >> operator >, > two tokens or ?

12 C++ example 2 Splitting text into tokens can be tricky How should the code below be split? 12 vector > myVector >, > two tokens

13 Example tokens TypeExamples Identifierx, y, z, foo, bar NUM42 FLOATNUM-3.141592654 STRING“so long, and thanks for all the fish” LPAREN( RPAREN) IFif … 13

14 Separating tokens 14 TypeExamples Comments/* ignore code */ // ignore until end of line White spaces\t \n Lexemes are recognized but get consumed rather than transmitted to parser if i f i/*comment*/f

15 Preprocessor directives in C 15 TypeExamples Inlude directives#include Macros#define THE_ANSWER 42

16 Designing a scanner Define each type of lexeme Reserved words: var, if, for, while Operators: < = ++ Identifiers: myFunction Literals: 123 “hello” Annotations: @SuppressWarnings But how do we define lexemes of unbounded length? 16

17 Designing a scanner Define each type of lexeme Reserved words: var, if, for, while Operators: < = ++ Identifiers: myFunction Literals: 123 “hello” Annotations: @SuppressWarnings But how do we define lexemes of unbounded length? Regular expressions 17

18 Regular languages refresher Formal languages Alphabet = finite set of letters Word = sequence of letter Language = set of words Regular languages defined equivalently by Regular expressions Finite-state automata 18

19 Regular expressions Empty string: Є Letter: a Concatenation: R 1 R 2 Union: R 1 | R 2 Kleene-star: R* Shorthand: R + stands for R R* scope: (R) Example: (0* 1*) | (1* 0*) What is this language? 19

20 Exercise 1 - Question Language of Java identifiers Identifiers start with either an underscore ‘_’ or a letter Continue with either underscore, letter, or digit 20

21 Exercise 1 - Answer Language of Java identifiers Identifiers start with either an underscore ‘_’ or a letter Continue with either underscore, letter, or digit (_|a|b|…|z|A|…|Z)(_|a|b|…|z|A|…|Z|0|…|9)* Using shorthand macros First= _|a|b|…|z|A|…|Z Next= First|0|…|9 R= First Next* 21

22 Exercise 2 - Question Language of rational numbers in decimal representation (no leading, ending zeros) 0 123.757.933333 Not 007 Not 0.30 22

23 Exercise 2 - Answer Language of rational numbers in decimal representation (no leading, ending zeros) Digit= 1|2|…|9 Digit0 = 0|Digit Num= Digit Digit0* Frac= Digit0* Digit Pos= Num |.Frac | 0.Frac| Num.Frac PosOrNeg = (Є|-)Pos R= 0 | PosOrNeg 23

24 Exercise 3 - Question Equal number of opening and closing parenthesis: [ n ] n = [], [[]], [[[]]], … 24

25 Exercise 3 - Answer Equal number of opening and closing parenthesis: [ n ] n = [], [[]], [[[]]], … Not regular Context-free Grammar: S ::= [] | [S] 25

26 Finite automata 26 start a b b c accepting state start state transition An automaton is defined by states and transitions

27 Automaton running example 27 start a b b c Words are read left-to-right cba

28 Automaton running example 28 start a b b c Words are read left-to-right cba

29 Automaton running example 29 start a b b c Words are read left-to-right cba

30 Automaton running example 30 start a b b c Words are read left-to-right word accepted cba

31 Word outside of language 31 start a b b c cbb

32 Word outside of language Missing transition means non-acceptance 32 start a b b c cbb

33 Exercise - Question What is the language defined by the automaton below? 33 start a b b c

34 Exercise - Answer What is the language defined by the automaton below? a b* c Generally: all paths leading to accepting states 34 start a b b c

35 Non-deterministic automata Allow multiple transitions from given state labeled by same letter 35 start a a b c b c

36 NFA run example 36 cba start a a b c b c

37 NFA run example Maintain set of states 37 cba start a a b c b c

38 NFA run example 38 cba start a a b c b c

39 NFA run example Accept word if any of the states in the set is accepting 39 cba start a a b c b c

40 NFA+Є automata Є transitions can “fire” without reading the input 40 start a b c Є

41 NFA+Є run example 41 start a b c cba Є

42 NFA+Є run example Now Є transition can non-deterministically take place 42 start a b c cba Є

43 NFA+Є run example 43 start a b c cba Є

44 NFA+Є run example 44 start a b c cba Є

45 NFA+Є run example 45 start a b c cba Є

46 NFA+Є run example 46 start a b c cba Є Word accepted

47 Reg-exp vs. automata Regular expressions are declarative Offer compact way to define a regular language by humans Don’t offer direct way to check whether a given word is in the language Automata are operative Define an algorithm for deciding whether a given word is in a regular language Not a natural notation for humans 47

48 From reg. exp. to automata Theorem: there is an algorithm to build an NFA+Є automaton for any regular expression Proof: by induction on the structure of the regular expression For each sub-expression R we build an automaton with exactly one start state and one accepting state Start state has no incoming transitions Accepting state has no outgoing transitions 48

49 From reg. exp. to automata Theorem: there is an algorithm to build an NFA+Є automaton for any regular expression Proof: by induction on the structure of the regular expression 49 start

50 Base cases 50 R =  R = a start  a

51 Construction for R 1 | R 2 51 start     R1R1 R2R2

52 Construction for R 1 R 2 52 start   R1R1 R2R2 

53 Construction for R* 53 start   R  

54 From NFA+Є to DFA Construction requires O(n) states for a reg- exp of length n Running an NFA+Є with n states on string of length m takes O(m·n 2 ) time Solution: determinization via subset construction Number of states worst-case exponential in n Running time O(m) 54

55 Subset construction For an NFA+Є with states M={s 1,…,s k } Construct a DFA with one state per set of states of the corresponding NFA M’={ [], [s 1 ], [s 1,s 2 ], [s 2,s 3 ], [s 1,s 2,s 3 ], …} Simulate transitions between individual states for every letter 55 a s1s1 s2s2 a [s 1,s 4 ] [s 2,s 7 ] NFA+Є DFA a s4s4 s7s7

56 Subset construction For an NFA+Є with states M={s 1,…,s k } Construct a DFA with one state per set of states of the corresponding NFA M’={ [], [s 1 ], [s 1,s 2 ], [s 2,s 3 ], [s 1,s 2,s 3 ], …} Extend macro states by states reachable via Є transitions 56 Є s1s1 s4s4 [s 1,s 2 ] [s 1,s 2,s 4 ] NFA+Є DFA

57 Scanning challenges Regular expressions allow us to define the language of all sequences of tokens Automata theory provides an algorithm for checking membership of words But we are interested in splitting the text not just deciding on membership How do we determine lexemes? How do we handle ambiguities – lexemes matching more than one token? 57

58 Separating lexemes ID= (a+b+…+z) (a+b+…+z)* ONE= 1 Input: abb1 How do we identify ID(abb), ONE? 58

59 Separating lexemes ID= (a+b+…+z) (a+b+…+z)* ONE= 1 Input: abb1 How do we identify ID(abb), ONE? 59 start a-z 1 ID ONE

60 Maximal munch ID= (a+b+…+z) (a+b+…+z)* ONE= 1 Input: abb1 How do we identify ID(abb), ONE? Solution: find longest matching lexeme Keep reading text until automaton leaves accepting state Return token corresponding to accepting state Reset – go back to start state and continue reading input from there 60

61 Handling ambiguities ID = (a+b+…+z) (a+b+…+z)* IF = if Input: if Matches both tokens What should the scanner output? 61 start a-z i ID IF f NFA

62 Handling ambiguities ID = (a+b+…+z) (a+b+…+z)* IF = if Input: if Matches both tokens What should the scanner output? 62 start a-z\i i a-z ID IF ID f ID a-z\f DFA a-z

63 Handling ambiguities ID = (a+b+…+z) (a+b+…+z)* IF = if Input: if Matches both tokens What should the scanner output? Solution: break tie using order of definitions Output: ID(if) 63 start a-z\i i a-z ID IF ID f ID a-z\f a-z

64 Handling ambiguities IF = if ID = (a+b+…+z) (a+b+…+z)* Input: if Matches both tokens What should the scanner output? Solution: break tie using order of definitions Output: IF 64 Conclusion: list keyword token definitions before identifier definition start a-z\i i a-z ID IF ID f ID a-z\f a-z

65 Implementing scanners in practice 65

66 Implementing scanners Manual construction of automata + determinization is Very tedious Error-prone Non-incremental Fortunately there are tools that automatically generate code from a specification for most languages C: Lex, Flex Java: JLex, JFlex 66

67 Using JFlex Define tokens (and states) Run Jflex to generate Java implementation Usually MyScanner.nextToken() will be called in a loop by parser 67 Regular Expressions JFlexMyScanner.java Stream of characters Tokens MyScanner.lex

68 Common format for reg-exps 68

69 Escape characters What is the expression for one or more + symbols? (+)+ won’t work (\+)+ will backslash \ before an operator turns it to standard character \*, \?, \+, … Newline: \n or \r\n depending on OS Tab: \t 69

70 Shorthands Use names for expressions letter = a | b | … | z | A | B | … | Z letter_ = letter | _ digit = 0 | 1 | 2 | … | 9 id = letter_ (letter_ | digit)* Use hyphen to denote a range letter = a-z | A-Z digit = 0-9 70

71 Catching errors What if input doesn’t match any token definition? Trick: Add a “catch-all” rule that matches any character and reports an error Add after all other rules 71

72 72 Next lecture: parsing


Download ppt "Compiler Principles Winter 2012-2013 Compiler Principles Lexical Analysis (Scanning) Mayer Goldberg and Roman Manevich Ben-Gurion University."

Similar presentations


Ads by Google