generating compilers with coco r
play

Generating Compilers with Coco/R Hanspeter Mssenbck University of - PowerPoint PPT Presentation

Generating Compilers with Coco/R Hanspeter Mssenbck University of Linz http://ssw.jku.at/Coco/ 1. Compilers 2. Grammars 3. Coco/R Overview 4. Scanner Specification 5. Parser Specification 6. Error Handling 7. LL(1) Conflicts 8. Case


  1. Generating Compilers with Coco/R Hanspeter Mössenböck University of Linz http://ssw.jku.at/Coco/ 1. Compilers 2. Grammars 3. Coco/R Overview 4. Scanner Specification 5. Parser Specification 6. Error Handling 7. LL(1) Conflicts 8. Case Study 1

  2. Compilation Phases character stream v a l = 1 0 * v a l + i lexical analysis (scanning) token stream 1 3 2 4 1 5 1 token number (ident) (assign) (number) (times) (ident) (plus) (ident) "val" - 10 - "val" - "i" token value syntax analysis (parsing) Statement syntax tree Expression Term ident = number * ident + ident 2

  3. Compilation Phases Statement syntax tree Expression Term ident = number * ident + ident semantic analysis (type checking, ...) intermediate syntax tree, symbol table, ... representation optimization code generation const 10 machine code load 1 mul ... 3

  4. Structure of a Compiler "main program" parser & directs the whole compilation sem. processing scanner code generation provides tokens from generates machine code symbol table the source code maintains information about declared names and types uses data flow 4

  5. Generating Compilers with Coco/R 1. Compilers 2. Grammars 3. Coco/R Overview 4. Scanner Specification 5. Parser Specification 6. Error Handling 7. LL(1) Conflicts 8. Case Study 5

  6. What is a grammar? Example Statement = "if" "(" Condition ")" Statement ["else" Statement]. Four components terminal symbols are atomic "if", ">=", ident, number, ... nonterminal symbols are decomposed Statement, Condition, Type, ... into smaller units productions rules how to decom- Statement = Designator "=" Expr ";". Designator = ident ["." ident]. pose nonterminals ... start symbol topmost nonterminal CSharp 6

  7. EBNF Notation Extended Backus-Naur form John Backus : developed the first Fortran compiler Peter Naur : edited the Algol60 report for writing grammars terminal nonterminal terminates literal Productions symbol symbol a production Statement = "write" ident "," Expression ";" . left-hand side right-hand side by convention • terminal symbols start with lower-case letters • nonterminal symbols start with upper-case letters Metasymbols ≡ a or b or c | separates alternatives a | b | c ≡ ab | ac (...) groups alternatives a (b | c) ≡ ab | b [...] optional part [a] b ≡ b | ab | aab | aaab | ... {...} iterative part {a}b 7

  8. Example: Grammar for Arithmetic Expressions Productions Expr = ["+" | "-"] Term {("+" | "-") Term}. Term = Factor {("*" | "/") Factor}. Expr Factor = ident | number | "(" Expr ")". Terminal symbols Term simple TS: "+", "-", "*", "/", "(", ")" (just 1 instance) terminal classes: ident, number (multiple instances) Factor Nonterminal symbols Expr, Term, Factor Start symbol Expr 8

  9. Generating Compilers with Coco/R 1. Compilers 2. Grammars 3. Coco/R Overview 4. Scanner Specification 5. Parser Specification 6. Error Handling 7. LL(1) Conflicts 8. Case Study 9

  10. Coco/R - Compiler Compiler / Recursive Descent Facts • Generates a scanner and a parser from an attributed grammar - scanner as a deterministic finite automaton (DFA) - recursive descent parser • Developed at the University of Linz (Austria) • There are versions for C#, Java, C/C++, VB.NET, Delphi, Modula-2, Oberon, ... • Gnu GPL open source: http://ssw.jku.at/Coco/ How it works main attributed parser Coco/R csc grammar scanner user-supplied classes (e.g. symbol table) 10

  11. A Very Simple Example Assume that we want to parse one of the following two alternatives red apple orange We write a grammar ... and embed it into a Coco/R compiler description COMPILER Sample file Sample.atg PRODUCTIONS Sample = "red" "apple" | "orange". Sample = "red" "apple" | "orange". END Sample. We invoke Coco/R to generate a scanner and a parser >coco Sample.atg Coco/R (Aug 22, 2006) checking parser + scanner generated 0 errors detected 11

  12. A Very Simple Example We write a main program using System; class Compile { must • create the scanner static void Main (string[] arg) Scanner scanner = new Scanner(arg[0]); • create the parser Parser parser = new Parser(scanner); • start the parser parser.Parse(); • report number of errors Console.Write(parser.errors.count + " errors detected"); } } We compile everything ... >csc Compile.cs Scanner.cs Parser.cs ... and run it file Input.txt >Compile Input.txt red apple 0 errors detected 12

  13. Generated Parser class Parser { token codes Grammar 1 2 ... returned by the scanner void Sample () { Sample = "red" "apple" if (la.kind == 1) { Get(); | "orange". Expect(2); 3 } else if (la.kind == 3) { Get(); } else SynErr(5); } ... Token la ; // lookahead token void Get () { la = Scanner.Scan(); ... } void Expect (int n) { if (la.kind == n) Get(); else SynErr(n); } public void Parse () { Get(); Sample(); } ... } 13

  14. A Slightly Larger Example Parse simple arithmetic expressions calc 34 + 2 + 5 calc 2 + 10 + 123 + 3 Coco/R compiler description COMPILER Sample file Sample.atg CHARACTERS digit = '0'..'9'. TOKENS number = digit {digit}. IGNORE '\r' + '\n' PRODUCTIONS Sample = {"calc" Expr}. Expr = Term {'+' Term}. Term = number. END Sample. The generated scanner and parser will >coco Sample.atg check the syntactic correctness of the input >csc Compile.cs Scanner.cs Parser.cs >Compile Input.txt 14

  15. Now we add Semantic Processing COMPILER Sample ... PRODUCTIONS Sample (. int n; .) = { "calc" This is called an Expr<out n> (. Console.WriteLine(n); .) }. "attributed grammar" /*-------------------------------------------------------------*/ Expr<out int n> (. int n1; .) = Term<out n> { '+' Term<out n1> (. n = n + n1; .) }. /*-------------------------------------------------------------*/ Term<out int n> = number (. n = Convert.Int32(t.val); .) . END Sample. Semantic Actions Attributes ordinary C# code similar to parameters executed during parsing of the symbols 15

  16. Generated Parser class Parser { Sample (. int n; .) ... = { "calc" void Sample () { Expr<out n> (. Console.WriteLine(n); .) int n; }. while (la.kind == 2) { ... Get(); Expr(out n); Console.WriteLine(n); } Token codes } void Expr (out int n) { 1 ... number int n1; 2 ... "calc" Term(out n); 3 ... '+' while (la.kind == 3) { Get(); Term(out n1); n = n + n1; >coco Sample.atg } >csc Compile.cs Scanner.cs Parser.cs } >Compile Input.txt void Term (out int n) { Expect(1); n = Convert.ToInt32(t.val); calc 1 + 2 + 3 6 Compile } calc 100 + 10 + 1 111 ... } 16

  17. Structure of a Compiler Description using System; using System.Collections; [UsingClauses] "COMPILER" ident [GlobalFieldsAndMethods] int sum; ScannerSpecification void Add(int x) { ParserSpecification sum = sum + x; "END" ident "." } ident denotes the start symbol of the grammar (i.e. the topmost nonterminal symbol) 17

  18. Generating Compilers with Coco/R 1. Compilers 2. Grammars 3. Coco/R Overview 4. Scanner Specification 5. Parser Specification 6. Error Handling 7. LL(1) Conflicts 8. Case Study 18

  19. Structure of a Scanner Specification ScannerSpecification = Should the generated compiler be case-sensitive? ["IGNORECASE"] Which character sets are used in the token declarations? ["CHARACTERS" {SetDecl}] Here one has to declare all structured tokens ["TOKENS" {TokenDecl}] (i.e. terminal symbols) of the grammar ["PRAGMAS" {PragmaDecl}] Pragmas are tokens which are not part of the grammar {CommentDecl} Here one can declare one or several kinds of comments {WhiteSpaceDecl}. for the language to be compiled Which characters should be ignored (e.g. \t, \n, \r)? 19

  20. Character Sets Example CHARACTERS the set of all digits digit = "0123456789". the set of all hexadecimal digits hexDigit = digit + "ABCDEF". the set of all upper-case letters letter = 'A' .. 'Z'. the end-of-line character eol = '\r'. any character that is not a digit noDigit = ANY - digit. Valid escape sequences in character constants and strings \\ backslash \r carriage return \f form feed \' apostrophe \n new line \a bell \" quote \t horizontal tab \b backspace \0 null character \v vertical tab \uxxxx hex character value 20

  21. Token Declarations Define the structure of token classes (e.g. ident, number, ...) Literals such as "while" or ">=" don't have to be declared Example TOKENS • Right-hand side must be ident = letter {letter | digit | '_'}. a regular EBNF expression number = digit {digit} • Names on the right-hand side | "0x" hexDigit hexDigit hexDigit hexDigit. denote character sets float = digit {digit} '.' digit {digit} ['E' ['+' | '-'] digit {digit}]. no problem if alternatives start with the same character 21

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend