compiling techniques
play

Compiling Techniques Lecture 7: Abstract Syntax Christophe Dubach - PowerPoint PPT Presentation

Syntax Tree Abstract Syntax Tree AST Processing Compiling Techniques Lecture 7: Abstract Syntax Christophe Dubach 2 October 2018 Christophe Dubach Compiling Techniques Syntax Tree Abstract Syntax Tree AST Processing Table of contents 1


  1. Syntax Tree Abstract Syntax Tree AST Processing Compiling Techniques Lecture 7: Abstract Syntax Christophe Dubach 2 October 2018 Christophe Dubach Compiling Techniques

  2. Syntax Tree Abstract Syntax Tree AST Processing Table of contents 1 Syntax Tree Semantic Actions Examples Abstract Grammar 2 Abstract Syntax Tree Internal Representation AST Builder 3 AST Processing Object-Oriented Processing Visitor Processing AST Visualisation Christophe Dubach Compiling Techniques

  3. Syntax Tree Semantic Actions Abstract Syntax Tree Examples AST Processing Abstract Grammar A parser does more than simply recognising syntax. It can: evaluate code (interpreter) emit code (simple compiler) build an internal representation of the program (multi-pass compiler) In general, a parser performs semantic actions: recursive descent parser: integrate the actions with the parsing functions bottom-up parser (automatically generated): add actions to the grammar Christophe Dubach Compiling Techniques

  4. Syntax Tree Semantic Actions Abstract Syntax Tree Examples AST Processing Abstract Grammar Syntax Tree In a multi-pass compiler, the parser builds a syntax tree which is used by the subsequent passes A syntax tree can be: a concrete syntax tree (or parse tree) if it directly corresponds to the context-free grammar an abstract syntax tree if it corresponds to a simplified (or abstract) grammar The abstract syntax tree (AST) is usually used in compilers. Christophe Dubach Compiling Techniques

  5. Syntax Tree Semantic Actions Abstract Syntax Tree Examples AST Processing Abstract Grammar Example: Concrete Syntax Tree (Parse Tree) Example: CFG for arithmetic expressions (EBNF form) Expr ::= Term ( ( ’+ ’ | ’ − ’) Term ) ∗ Term ::= Factor ( ( ’ ∗ ’ | ’/ ’) Factor ) ∗ Factor ::= number | ’( ’ Expr ’) ’ After removal of EBNF syntax Expr ::= Term Terms Terms ::= ( ’+ ’ | ’ − ’) Term Terms | ǫ Term ::= Factor Factors Factors ::= ( ’ ∗ ’ | ’/ ’) Factor Factors | ǫ Factor ::= number | ’( ’ Expr ’) ’ After further simplification Expr ::= Term (( ’+ ’ | ’ − ’) Expr | ǫ ) Term ::= Factor ( ( ’ ∗ ’ | ’ / ’ ) Term | ǫ ) Factor ::= number | ’( ’ Expr ’) ’ Christophe Dubach Compiling Techniques

  6. Syntax Tree Semantic Actions Abstract Syntax Tree Examples AST Processing Abstract Grammar Example: Concrete Syntax Tree (Parse Tree) CFG for arithmetic expressions Expr ::= Term (( ’+ ’ | ’ − ’) Expr | ǫ ) Term ::= Factor ( ( ’ ∗ ’ | ’ / ’ ) Term | ǫ ) Factor ::= number | ’( ’ Expr ’) ’ Concrete Syntax Tree for 5 ∗ 3 Term Factor ’ ∗ ’ Term The concrete syntax tree contains number Factor a lot of unnecessary information. ’5’ number ’3’ Christophe Dubach Compiling Techniques

  7. Syntax Tree Semantic Actions Abstract Syntax Tree Examples AST Processing Abstract Grammar It is possible to simplify the concrete syntax tree to remove the redundant information. For instance parenthesis are not necessary. Exercise 1 Write the concrete syntax tree for 3 ∗ (4 + 5) 2 Simplify the tree. Christophe Dubach Compiling Techniques

  8. Syntax Tree Semantic Actions Abstract Syntax Tree Examples AST Processing Abstract Grammar Abstract Grammar These simplifications leads to a new simpler context-free grammar called Abstract Grammar. Example: abstract grammar for arithmetic expressions Expr ::= BinOp | i n t L i t e r a l BinOp ::= Expr Op Expr Op ::= add | sub | mul | d i v 5 ∗ 3 BinOp intLiteral(5) intLiteral(3) mul This is called an Abstract Syntax Tree Christophe Dubach Compiling Techniques

  9. Syntax Tree Semantic Actions Abstract Syntax Tree Examples AST Processing Abstract Grammar Example: abstract grammar for arithmetic expressions Expr ::= BinOp | i n t L i t e r a l BinOp ::= Expr Op Expr Op ::= add | sub | mul | d i v Note that for given concrete grammar, there exist numerous abstract grammar: Expr ::= AddOp | SubOp | MulOp | DivOp | i n t L i t e r a l AddOp ::= Expr add Expr SubOp ::= Expr sub Expr MulOp ::= Expr mul Expr DivOp ::= Expr d i v Expr We pick the most suitable grammar for the compiler. Christophe Dubach Compiling Techniques

  10. Syntax Tree Internal Representation Abstract Syntax Tree AST Builder AST Processing Abstract Syntax Tree The Abstract Syntax Tree (AST) forms the main intermediate representation of the compiler’s front-end. For each non-terminal or terminal in the abstract grammar, we define a class. If a non-terminal has any alternative on the rhs (right hand side), then the class is abstract (cannot instantiate it). The terminal or non-terminal appearing on the rhs are subclasses of the non-terminal on the lhs. The sub-trees are represented as instance variable in the class. Each non-abstract class has a unique constructor. If a terminal does not store any information, then we can use an Enum type in Java instead of a class. Christophe Dubach Compiling Techniques

  11. Syntax Tree Internal Representation Abstract Syntax Tree AST Builder AST Processing Example: abstract grammar for arithmetic expressions Expr ::= BinOp | i n t L i t e r a l BinOp ::= Expr Op Expr Op ::= add | sub | mul | d i v Corresponding Java Classes a b s t r a c t c l a s s Expr { } c l a s s I n t L i t e r a l extends Expr { i n t i ; I n t L i t e r a l ( i n t i ) { . . . } } BinOp Expr { c l a s s extends Op op ; Expr l h s ; Expr rhs ; BinOp (Op op , Expr lhs , Expr rhs ) { . . . } } enum Op { ADD, SUB, MUL, DIV } Christophe Dubach Compiling Techniques

  12. Syntax Tree Internal Representation Abstract Syntax Tree AST Builder AST Processing CFG for arithmetic expressions Expr ::= Term (( ’+ ’ | ’ − ’) Expr | ǫ ) Term ::= Factor ( ( ’ ∗ ’ | ’ / ’ ) Term | ǫ ) Factor ::= number | ’( ’ Expr ’) ’ Current Parser (class) Expr parseExpr () { parseTerm ( ) ; ( accept (PLUS | MINUS)) i f nextToken ( ) ; Expr parseFactor () { parseExpr ( ) ; i f ( accept (LPAR)) } parseExpr ( ) ; expect (RPAR) ; Expr parseTerm () { e l s e pars eFactor ( ) ; expect (NUMBER) ; ( accept (TIMES | DIV )) i f } nextToken ( ) ; parseTerm ( ) ; } Christophe Dubach Compiling Techniques

  13. Syntax Tree Internal Representation Abstract Syntax Tree AST Builder AST Processing AST building (modified Parser) Expr parseExpr ( ) { Current Parser Expr l h s = parseTerm ( ) ; ( accept (PLUS | MINUS)) i f Op op ; void parseExpr () { i f ( token == PLUS) parseTerm ( ) ; op = ADD; ( accept (PLUS | MINUS)) i f e l s e // token == MINUS nextToken ( ) ; op = SUB; parseExpr ( ) ; nextToken ( ) ; } Expr rhs = parseExpr ( ) ; return new BinOp ( op , lhs , rhs ) ; l h s ; return } Christophe Dubach Compiling Techniques

  14. Syntax Tree Internal Representation Abstract Syntax Tree AST Builder AST Processing AST building (modified Parser) Expr parseTerm ( ) { Current Parser Expr l h s = p a r s e F a c t o r ( ) ; i f ( accept (TIMES | DIV )) Op op ; void parseTerm ( ) { i f ( token == TIMES) p a r s e F a c t o r ( ) ; op = MUL; i f ( accept (TIMES | DIV )) e l s e // token == DIV nextToken ( ) ; op = DIV ; parseTerm ( ) ; nextToken ( ) ; } Expr rhs = parseTerm ( ) ; new BinOp ( op , lhs , rhs ) ; return return l h s ; } Christophe Dubach Compiling Techniques

  15. Syntax Tree Internal Representation Abstract Syntax Tree AST Builder AST Processing AST building (modified Parser) Expr p a r s e F a c t o r () { i f ( accept (LPAR) ) Current Parser Expr e = parseExpr ( ) ; expect (RPAR) ; p a r s e F a c t o r ( ) { return e ; void i f ( accept (LPAR) ) e l s e parseExpr ( ) ; I n t L i t e r a l i l = parseNumber ( ) ; i l ; expect (RPAR) ; return } e l s e expect (NUMBER) ; } I n t L i t e r a l parseNumber ( ) { Token n = expect (NUMBER) ; i = I n t e g e r . p a r s e I n t ( n . data ) ; i n t return new I n t L i t e r a l ( i ) ; } Christophe Dubach Compiling Techniques

  16. Syntax Tree Object-Oriented Processing Abstract Syntax Tree Visitor Processing AST Processing AST Visualisation Compiler Pass AST pass An AST pass is an action that process the AST in a single traversal. A pass can for instance: assign a type to each node of the AST perform an optimisation generate code It is important to ensure that the different passes can access the AST in a flexible way. An inefficient solution would be to use instanceof to find the type of syntax node Example i f ( t r e e instanceof I n t L i t e r a l ) (( I n t L i t e r a l ) t r e e ) . i ; Christophe Dubach Compiling Techniques

  17. Syntax Tree Object-Oriented Processing Abstract Syntax Tree Visitor Processing AST Processing AST Visualisation Two Ways to Process an AST Object-Oriented Processing Visitor Processing Christophe Dubach Compiling Techniques

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