Chapter 4. Abstract Syntax

Similar documents
CA Compiler Construction

Compiler Theory. (Semantic Analysis and Run-Time Environments)

A Simple Syntax-Directed Translator

Question Points Score

Fundamentals of Compilation

CSE P 501 Compilers. Implementing ASTs (in Java) Hal Perkins Autumn /20/ Hal Perkins & UW CSE H-1

A simple syntax-directed

CSE 401 Midterm Exam Sample Solution 11/4/11

CSE 401 Midterm Exam Sample Solution 2/11/15

COMP-421 Compiler Design. Presented by Dr Ioanna Dionysiou

CSE P 501 Compilers. Implementing ASTs (in Java) Hal Perkins Winter /22/ Hal Perkins & UW CSE H-1

Comp 411 Principles of Programming Languages Lecture 3 Parsing. Corky Cartwright January 11, 2019

Syntax/semantics. Program <> program execution Compiler/interpreter Syntax Grammars Syntax diagrams Automata/State Machines Scanning/Parsing

Object-oriented Compiler Construction

CSE 401/M501 Compilers

Context-Free Grammar. Concepts Introduced in Chapter 2. Parse Trees. Example Grammar and Derivation

Overview of Assignment 5

CMPT 379 Compilers. Parse trees

LECTURE 3. Compiler Phases

EDAN65: Compilers, Lecture 06 A LR parsing. Görel Hedin Revised:

JavaCC Parser. The Compilation Task. Automated? JavaCC Parser

Topic 3: Syntax Analysis I

A programming language requires two major definitions A simple one pass compiler

UNIVERSITY OF CALIFORNIA Department of Electrical Engineering and Computer Sciences Computer Science Division

Syntax Analysis Check syntax and construct abstract syntax tree

Recursive Descent Parsers

CSE 401/M501 18au Midterm Exam 11/2/18. Name ID #

CSE P 501 Compilers. Parsing & Context-Free Grammars Hal Perkins Winter /15/ Hal Perkins & UW CSE C-1

Table-Driven Top-Down Parsers

JastAdd an aspect-oriented compiler construction system

CSE P 501 Compilers. Parsing & Context-Free Grammars Hal Perkins Spring UW CSE P 501 Spring 2018 C-1

Syntax and Grammars 1 / 21

Derivations vs Parses. Example. Parse Tree. Ambiguity. Different Parse Trees. Context Free Grammars 9/18/2012

SEMANTIC ANALYSIS TYPES AND DECLARATIONS

CSE 3302 Programming Languages Lecture 2: Syntax

Parsing II Top-down parsing. Comp 412

Chapter 3: Describing Syntax and Semantics. Introduction Formal methods of describing syntax (BNF)

Context free grammars and predictive parsing

Examples of attributes: values of evaluated subtrees, type information, source file coordinates,

Project Compiler. CS031 TA Help Session November 28, 2011

RYERSON UNIVERSITY DEPARTMENT OF COMPUTER SCIENCE CPS 710 FINAL EXAM FALL 2016

1. Explain the input buffer scheme for scanning the source program. How the use of sentinels can improve its performance? Describe in detail.

CA Compiler Construction

ECE251 Midterm practice questions, Fall 2010

Grammars & Parsing. Lecture 12 CS 2112 Fall 2018

Introduction to Parsing. Lecture 5

Chapter 3 Parsing. time, arrow, banana, flies, like, a, an, the, fruit

Abstract Syntax. Mooly Sagiv. html://

G53CMP: Lecture 4. Syntactic Analysis: Parser Generators. Henrik Nilsson. University of Nottingham, UK. G53CMP: Lecture 4 p.1/32

CPS 506 Comparative Programming Languages. Syntax Specification

COP 3402 Systems Software Top Down Parsing (Recursive Descent)

A clarification on terminology: Recognizer: accepts or rejects strings in a language. Parser: recognizes and generates parse trees (imminent topic)

Abstract Syntax Trees

Implementing Actions

Visitor Pattern CS356 Object-Oriented Design and Programming November 5, 2014 Yu Sun, Ph.D.

BFH/HTA Biel/DUE/Course 355/ Software Engineering 2

COP 3402 Systems Software Syntax Analysis (Parser)

Chapter 2 A Quick Tour

Ambiguity and Errors Syntax-Directed Translation

CS 415 Midterm Exam Spring 2002

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Compiler Design

Lexical Analysis. COMP 524, Spring 2014 Bryan Ward

Plan for Today. Regular Expressions: repetition and choice. Syntax and Semantics. Context Free Grammars

CS 314 Principles of Programming Languages

EDA180: Compiler Construc6on. Top- down parsing. Görel Hedin Revised: a

Chapter 8, Design Patterns Visitor

LL(k) Compiler Construction. Choice points in EBNF grammar. Left recursive grammar

LL(k) Compiler Construction. Top-down Parsing. LL(1) parsing engine. LL engine ID, $ S 0 E 1 T 2 3

Syntax-Directed Translation. Lecture 14

INCORPORATING ADVANCED PROGRAMMING TECHNIQUES IN THE COMPUTER INFORMATION SYSTEMS CURRICULUM

CPSC 411, Fall 2010 Midterm Examination

CSCE 314 Programming Languages

The Visitor Pattern. Design Patterns In Java Bob Tarr

ASTs, Objective CAML, and Ocamlyacc

CSE 413 Languages & Implementation. Hal Perkins Winter 2019 Structs, Implementing Languages (credits: Dan Grossman, CSE 341)

Error Recovery during Top-Down Parsing: Acceptable-sets derived from continuation

Review main idea syntax-directed evaluation and translation. Recall syntax-directed interpretation in recursive descent parsers

Syntax Analysis. Chapter 4

LL(k) Parsing. Predictive Parsers. LL(k) Parser Structure. Sample Parse Table. LL(1) Parsing Algorithm. Push RHS in Reverse Order 10/17/2012

CSE P 501 Exam 8/5/04

Compilers - Chapter 2: An introduction to syntax analysis (and a complete toy compiler)

CSE 413 Final Exam. June 7, 2011

Types and Static Type Checking (Introducing Micro-Haskell)

Abstract Syntax Trees & Top-Down Parsing

Abstract Syntax Trees & Top-Down Parsing

Specifying Syntax. An English Grammar. Components of a Grammar. Language Specification. Types of Grammars. 1. Terminal symbols or terminals, Σ

Data Abstraction. An Abstraction for Inductive Data Types. Philip W. L. Fong.

Types and Static Type Checking (Introducing Micro-Haskell)

THE COMPILATION PROCESS EXAMPLE OF TOKENS AND ATTRIBUTES

LANGUAGE PROCESSORS. Introduction to Language processor:

RYERSON POLYTECHNIC UNIVERSITY DEPARTMENT OF MATH, PHYSICS, AND COMPUTER SCIENCE CPS 710 FINAL EXAM FALL 96 INSTRUCTIONS

Grammars and Parsing. Paul Klint. Grammars and Parsing

EECS 6083 Intro to Parsing Context Free Grammars

5. Semantic Analysis!

CS 406: Syntax Directed Translation

CS164: Midterm I. Fall 2003

Introduction to Parsing. Lecture 8

Abstract Syntax Trees & Top-Down Parsing

Parsing #1. Leonidas Fegaras. CSE 5317/4305 L3: Parsing #1 1

Design Patterns. An introduction

Transcription:

Chapter 4 Abstract Syntax

Outline compiler must do more than recognize whether a sentence belongs to the language of a grammar it must do something useful with that sentence. The semantic actions of a parser can do useful things with the phrases that are parsed. In a recursive-descent parser, semantic action code is interspersed with the control flow of the parsing actions. In a parser specified in JavaCC, semantic actions are fragments of Java program code attached to grammar productions. SableCC, on the other hand, automatically generates syntax trees as it parses.

Semantic Actions Each terminal and nonterminal may be associated with its own type of semantic value. For example in the following grammar exp : INT exp PLUS exp exp MINUS exp exp TIMES exp MINUS exp the type associated with exp and INT might be int For a rule A B C D, the semantic action must return a value whose type is the one associated with the nonterminal A. But it can build this value from the values associated with the matched terminals and nonterminals B, C, D.

Adding semantic actions in a recursive descent parser In a recursive-descent parser, the semantic actions are the values returned by parsing functions, or the side effects of those functions, or both. For each terminal and nonterminal symbol, we associate a type (from the implementation language of the compiler) of semantic values representing phrases derived from that symbol. S E $ E T E E + T E E T E E T F T T * F T T / F T T F id F num F (E)

Recursive-descent interpreter

Recursive descent interpreter (cont.)

Automatically generated parsers A parser specification for JavaCC consists of a set of grammar rules, each annotated with a semantic action that is a Java statement. Whenever the generated parser reduces by a rule, it will execute the corresponding semantic action fragment.

JavaCC version of interpreter

Building syntax trees SableCC, unlike JavaCC, has no way to attach action code to productions. However, SableCC automatically generates syntax tree classes, and a parser generated by SableCC will build syntax trees using those classes. For JavaCC, there are several companion tools, including JJTree and JTB (the Java Tree Builder), which, like SableCC, generate syntax tree classes and insert action code into the grammar for building syntax trees.

Abstract Syntax Trees It is possible to write an entire compiler that fits within the semantic action phrases of a JavaCC or SableCC parser. However, such a compiler is difficult to read and maintain, and this approach constrains the compiler to analyze the program in exactly the order it is parsed. To improve modularity, it is better to separate issues of syntax (parsing) from issues of semantics (type-checking and translation to machine code). One way to do this is for the parser to produce a parse tree - a data structure that later phases of the compiler can traverse. Technically, a parse tree has exactly one leaf for each token of the input and one internal node for each grammar rule reduced during the parse. Such a parse tree, which we will call a concrete parse tree, representing the concrete syntax of the source language, may be inconvenient to use directly. Many of the punctuation tokens are redundant and convey no information - they are useful in the input string, but once the parse tree is built, the structure of the tree conveys the structuring information more conveniently.

Abstract Syntax Trees (cont.) The structure of the parse tree may depend too much on the grammar! The grammar transformations like factoring, elimination of left recursion, elimination of ambiguity - involve the introduction of extra nonterminal symbols and extra grammar productions for technical purposes. These details should be confined to the parsing phase and should not clutter the semantic analysis. An abstract syntax makes a clean interface between the parser and the later phases of a compiler (or, in fact, for the later phases of other kinds of program-analysis tools such as dependency analyzers). The abstract syntax tree conveys the phrase structure of the source program, with all parsing issues resolved but without any semantic interpretation.

Building syntax trees for expressions

Visitors After a AST is constructed we would like to do many interpretations on them Type checking optimization Translate to a target code So we need to modularize compiler in such a way to add a new interpretations (for example new translation module for a new processor) with least effect on other modules But how we can do that?

Visitors (cont.) A AST with one interpretation embedded in it (Object Oriented Style):

Visitors (cont.) One way is to create a new interpretation class and use instanceof tests to deal with each syntax tree class correspondingly This is a syntax separate from interpretations style of programming. we have several kinds of objects: compound statements, assignment statements, print statements, and so on. And we also may have several different interpretations of these objects: type-check, translate to Pentium code, translate to Sparc code, optimize, interpret, and so on.

Visitors (cont.) Each interpretation must be applied to each kind; if we add a new kind, we must implement each interpretation for it; and if we add a new interpretation, we must implement it for each kind.

Visitors (cont.) If the syntax separate from interpretations style is used, then it is easy and modular to add a new interpretation: One new function is written, with clauses for the different kinds all grouped logically together. On the other hand, it will not be modular to add a new kind, since a new clause must be added to every interpretation function. With the object-oriented style, each interpretation is just a method in all the classes. It is easy and modular to add a new kind: All the interpretations of that kind are grouped together as methods of the new class. But it is not modular to add a new interpretation: A new method must be added to every class. For graphic user interfaces, each application will want to make its own kinds of widgets; it is impossible to predetermine one set of widgets for everyone to use.

Visitors (cont.) On the other hand, the set of common operations (interpretations) is fixed: The window manager demands that each widget support only a certain interface. Thus, the object-oriented style works well, and the syntax separate from interpretations style would not be as modular. For programming languages, on the other hand, it works very well to fix a syntax and then provide many interpretations of that syntax. If we have a compiler where one interpretation is translate to Pentium and we wish to port that compiler to the Sparc, then not only must we add operations for generating Sparc code but we might also want to remove (in this configuration) the Pentium codegeneration functions. This would be very inconvenient in the object-oriented style, requiring each class to be edited. In the syntax separate from interpretations style, such a change is modular: We remove a Pentium related module and add a Sparc module. Therefore we prefer a syntax-separate-from-interpretations style.

Visitors (cont.) Fortunately, we can use this style without employing instanceof expressions for accessing syntax trees. Instead, we can use a technique known as the Visitor pattern. But what is a design pattern: Christopher Alexander says, "Each pattern describes a problem which occurs over and over again in our environment, and then describes the core of the solution to that problem, in such a way that you can use this solution a million times over, without ever doing it the same way twice"

Visitors (cont.) The figure shows object oriented way The problem here is that distributing all these operations across the various node classes leads to a system that's hard to understand, maintain, and change. It will be confusing to have typechecking code mixed with prettyprinting code or flow analysis code. Moreover, adding a new operation usually requires recompiling all of these classes. It would be better if each new operation could be added separately, and the node classes were independent of the operations that apply to them.

Visitors (cont.) We can achieve this goal by packaging related operations from each class in a separate object, called a visitor, and passing it to elements of the abstract syntax tree as it's traversed. When an element "accepts" the visitor, it sends a request to the visitor that encodes the element's class. It also includes the element as an argument. The visitor will then execute the operation for that element the operation that used to be in the class of the element. For example, a compiler that didn't use visitors might type-check a procedure by calling the TypeCheck operation on its abstract syntax tree. Each of the nodes would implement TypeCheck by calling TypeCheck on its components (see the preceding class diagram). If the compiler type-checked a procedure using visitors, then it would create a TypeCheckingVisitor object and call the Accept operation on the abstract syntax tree with that object as an argument. Each of the nodes would implement Accept by calling back on the visitor: an assignment node calls VisitAssignment operation on the visitor, while a variable reference calls VisitVariableReference. What used to be the TypeCheck operation in class AssignmentNode is now the VisitAssignment operation on TypeCheckingVisitor.

Class structures with visitors Visitors (cont.)

Visitors (cont.)

Visitors (cont.)

Advantages of Visitors

MiniJava visitor

Constructing syntax trees SableCC enables automatic generation of code for syntax tree classes, code for building syntax trees, and code for template visitors. For JavaCC, a companion tool called the Java Tree Builder (JTB) enables the generation of similar code. The advantage of using such tools is that once the grammar is written, one can go straight on to writing visitors that operate on syntax trees. The disadvantage is that the syntax trees supported by the generated code may be less abstract than one could desire.

Reading Chapter 4 of the book GoF patterns book about visitors