CMPE 152: Compiler Design September 17 Class Meeting

Slides:



Advertisements
Similar presentations
CPSC 388 – Compiler Design and Construction
Advertisements

Environments and Evaluation
CS 153: Concepts of Compiler Design August 25 Class Meeting Department of Computer Science San Jose State University Fall 2014 Instructor: Ron Mak
2.2 A Simple Syntax-Directed Translator Syntax-Directed Translation 2.4 Parsing 2.5 A Translator for Simple Expressions 2.6 Lexical Analysis.
Interpretation Environments and Evaluation. CS 354 Spring Translation Stages Lexical analysis (scanning) Parsing –Recognizing –Building parse tree.
CS 153: Concepts of Compiler Design September 9 Class Meeting Department of Computer Science San Jose State University Fall 2015 Instructor: Ron Mak
CS 153: Concepts of Compiler Design October 5 Class Meeting Department of Computer Science San Jose State University Fall 2015 Instructor: Ron Mak
CS 153: Concepts of Compiler Design September 14 Class Meeting Department of Computer Science San Jose State University Fall 2015 Instructor: Ron Mak
CS 152: Programming Language Paradigms April 2 Class Meeting Department of Computer Science San Jose State University Spring 2014 Instructor: Ron Mak
CS 153: Concepts of Compiler Design August 26 Class Meeting Department of Computer Science San Jose State University Fall 2015 Instructor: Ron Mak
CS 153: Concepts of Compiler Design September 16 Class Meeting Department of Computer Science San Jose State University Fall 2015 Instructor: Ron Mak
CS 153: Concepts of Compiler Design September 21 Class Meeting Department of Computer Science San Jose State University Fall 2015 Instructor: Ron Mak
CS 153: Concepts of Compiler Design October 7 Class Meeting Department of Computer Science San Jose State University Fall 2015 Instructor: Ron Mak
CS 153: Concepts of Compiler Design October 10 Class Meeting Department of Computer Science San Jose State University Fall 2015 Instructor: Ron Mak
Chapter 1 Introduction Major Data Structures in Compiler
CS 153: Concepts of Compiler Design September 30 Class Meeting Department of Computer Science San Jose State University Fall 2015 Instructor: Ron Mak
CS 152: Programming Language Paradigms April 7 Class Meeting Department of Computer Science San Jose State University Spring 2014 Instructor: Ron Mak
CS 153: Concepts of Compiler Design October 12 Class Meeting Department of Computer Science San Jose State University Fall 2015 Instructor: Ron Mak
CS 153: Concepts of Compiler Design September 23 Class Meeting Department of Computer Science San Jose State University Fall 2015 Instructor: Ron Mak
CS 153: Concepts of Compiler Design September 28 Class Meeting Department of Computer Science San Jose State University Fall 2015 Instructor: Ron Mak
CS 153: Concepts of Compiler Design September 14 Class Meeting
A Simple Syntax-Directed Translator
CS 153: Concepts of Compiler Design August 29 Class Meeting
CS 153: Concepts of Compiler Design September 12 Class Meeting
CS 153: Concepts of Compiler Design October 17 Class Meeting
CS 153: Concepts of Compiler Design October 5 Class Meeting
CS 153: Concepts of Compiler Design September 7 Class Meeting
CS 153: Concepts of Compiler Design October 3 Class Meeting
CS 153: Concepts of Compiler Design December 5 Class Meeting
CS 153: Concepts of Compiler Design November 30 Class Meeting
CMPE 152: Compiler Design December 5 Class Meeting
CMPE 152: Compiler Design February 6 Class Meeting
CMPE 152: Compiler Design September 25 Class Meeting
CMPE 152: Compiler Design September 4 Class Meeting
CS 3304 Comparative Languages
CMPE 152: Compiler Design September 6 Class Meeting
CMPE 152: Compiler Design September 11 Class Meeting
CMPE 152: Compiler Design September 18 Class Meeting
CMPE 152: Compiler Design September 13 Class Meeting
CMPE 152: Compiler Design October 2 Class Meeting
CMPE 152: Compiler Design October 4 Class Meeting
CMPE 152: Compiler Design September 11/13 Lab
CMPE 152: Compiler Design October 4 Class Meeting
CMPE 152: Compiler Design August 23 Class Meeting
CMPE 152: Compiler Design August 21/23 Lab
CMPE 152: Compiler Design September 20 Class Meeting
CMPE 152: Compiler Design December 6 Class Meeting
CMPE 152: Compiler Design September 27 Class Meeting
CS 153: Concepts of Compiler Design November 6 Class Meeting
CS 432: Compiler Construction Lecture 11
CMPE 152: Compiler Design February 14 Class Meeting
CMPE 152: Compiler Design February 28 Class Meeting
CMPE 152: Compiler Design March 7 Class Meeting
CMPE 152: Compiler Design January 29 Class Meeting
CMPE 152: Compiler Design February 12 Class Meeting
CMPE 152: Compiler Design February 7 Class Meeting
CMPE 152: Compiler Design February 21/26 Lab
CMPE 152: Compiler Design February 28 / March 5 Lab
CMPE 152: Compiler Design February 21 Class Meeting
CMPE 152: Compiler Design February 19 Class Meeting
CMPE 152: Compiler Design March 7 Class Meeting
CMPE 152: Compiler Design April 18 – 30 Labs
CMPE 152: Compiler Design March 5 Class Meeting
CMPE 152: Compiler Design December 4 Class Meeting
CMPE 152: Compiler Design March 7/12 Lab
CMPE 152: Compiler Design September 3 Class Meeting
CMPE 152: Compiler Design August 27 Class Meeting
CMPE 152: Compiler Design February 7 Class Meeting
CMPE 152: Compiler Design September 26 Class Meeting
CMPE 152: Compiler Design September 19 Class Meeting
Presentation transcript:

CMPE 152: Compiler Design September 17 Class Meeting Department of Computer Engineering San Jose State University Fall 2019 Instructor: Ron Mak www.cs.sjsu.edu/~mak

Top Down Recursive Descent Parsing The term is very descriptive of how the parser works. Start by parsing the topmost source language construct. For now it’s a statement. Later, it will be the program.

Top Down Recursive Descent Parsing “Drill down” (descend) by parsing the sub-constructs. statement →assignment statement → expression →variable → etc. Use recursion on the way down. statement →WHILE statement → statement → etc.

Top Down Recursive Descent Parsing, cont’d This is the technique for hand-coded parsers. Very easy to understand and write. The source language grammar is encoded in the structure of the parser code. Close correspondence between the parser code and the syntax diagrams. Disadvantages Can be tedious coding. Ad hoc error handling. Big and slow!

Top Down Recursive Descent Parsing, cont’d Bottom-up parsers can be smaller and faster. Error handling can still be tricky. To be covered later this semester.

What Have We Accomplished So Far? A working scanner for Pascal. A set of Pascal token classes. Symbol table and intermediate code classes. A parser for Pascal compound, assignment, and control statements and for expressions. Generate parse trees. Syntax error handling. A messaging system with message producers and message listeners. Placeholder classes for the back end code generator and executor. So … we are ready to put all this stuff into action!

Temporary Hacks for Now Only one symbol table in the stack. Variables are scalars (not records or arrays) but otherwise have no declared type. We haven’t parsed any Pascal declarations yet! We consider a variable to be “declared” (and we enter it into the symbol table) the first time it appears on the left-hand-side of an assignment statement (it’s the target of the assignment).

A New Temporary Hack Today, we’re going to store runtime computed values into the symbol table. As attribute DATA_VALUE

Quick Review of the Framework Chapter 6 Quick Review of the Framework Executing compound statements, assignment statements, and expressions.

The Statement Executor Class Class StatementExecutor is a subclass of Executor which is a subclass of Backend. Its execute() method interprets the parse tree whose root node is passed to it. The return value is either the value of a computed expression, or null.

The Statement Executor Subclasses StatementExecutor itself has subclasses: CompoundExecutor AssignmentExecutor ExpressionExecutor The execute() method of each subclass also interprets the parse tree whose root node is passed to it. Note the dependency relationships among StatementExecutor and its subclasses.

Runtime Error Handling Just as the front end has an error handler for syntax errors, the interpreter back end has an error handler for runtime errors. Similar flag() method. Here, run time means the time when the interpreter is executing the source program. Runtime error message format Error message Source line number where the error occurred

Runtime Error Messages Here are the errors and their messages that our interpreter will be able to detect and flag at run time. enum class RuntimeErrorCode {     UNINITIALIZED_VALUE,     VALUE_RANGE,     INVALID_CASE_EXPRESSION_VALUE,     DIVISION_BY_ZERO,     INVALID_STANDARD_FUNCTION_ARGUMENT,     INVALID_INPUT,     STACK_OVERFLOW,     UNIMPLEMENTED_FEATURE, }; wci/backend/interpreter/RuntimeError.h

Class StatementExecutor Object StatementExecutor::execute(ICodeNode *node) {     ICodeNodeTypeImpl node_type = (ICodeNodeTypeImpl) node->get_type();     ...     switch (node_type)     {         case NT_COMPOUND:         {             CompoundExecutor compound_executor(this);             return compound_executor.execute(node);         }         case NT_ASSIGN:             AssignmentExecutor assignment_executor(this);             return assignment_executor.execute(node); ... } The node_type tells which executor subclass to use. wci/backend/interpreter/executors/StatementExecutor.cpp

Class CompoundExecutor Object CompoundExecutor::execute(ICodeNode *node) {     StatementExecutor statement_executor(this);     vector<ICodeNode *> children = node->get_children();     for (ICodeNode *child : children) statement_executor.execute(child);     return Object();  // empty } wci/backend/interpreter/executors/CompoundExecutor.cpp Get the list of all the child nodes of the COMPOUND node. Then call statement_executor.execute() on each child.

Class AssignmentExecutor Object AssignmentExecutor::execute(ICodeNode *node) {     vector<ICodeNode *> children = node->get_children();     ICodeNode *variable_node = children[0];     ICodeNode *expression_node = children[1];     ExpressionExecutor expression_executor(this);     Object result_value = expression_executor.execute(expression_node); // Set the value as an attribute of the     // target variable's symbol table entry.     id->set_attribute((SymTabKey) DATA_VALUE, result_value);     send_assignment_message(node, id->get_name(), result_value);     ++execution_count;     Object(); // empty } wci/backend/interpreter/executors/AssignmentExecutor.cpp Temporary hack: Set the computed value into the symbol table. Send a message about the assignment.

The Assignment Message Very useful for debugging. Necessary for now since we don’t have any other way to generate runtime output. Message format Source line number Name of the variable Value of the expression

Executing Expressions Recall that Pascal’s operator precedence rules are encoded in the structure of the parse tree. At run time, we do a postorder tree traversal. alpha + 3/(beta - gamma) + 5

Class ExpressionExecutor, cont’d Does not do type checking. It’s the job of the language-specific front end to flag any type incompatibilities. Does not know the operator precedence rules. The front end must build the parse tree correctly. The executor simply does a post-order tree traversal.

Class ExpressionExecutor, cont’d The bridge between the front end and the back end is the symbol table and the intermediate code (parse tree) in the intermediate tier. Loose coupling (again!)

Simple Interpreter I BEGIN BEGIN {Temperature conversions.} five := -1 + 2 - 3 + 4 + 3; ratio := five/9.0; fahrenheit := 72; centigrade := (fahrenheit - 32)*ratio; centigrade := 25; fahrenheit := centigrade/ratio + 32; fahrenheit := 32 + centigrade/ratio END; {Runtime division by zero error.} dze := fahrenheit/(ratio - ratio); continued …

Simple Interpreter I, cont’d BEGIN {Calculate a square root using Newton's method.} number := 4; root := number; root := (number/root + root)/2; END; ch := 'x'; str := 'hello, world' END. Demo (Chapter 6) ./Chapter6cpp execute assignments.txt

Lab Assignment #3 Modify the Pascal parser to parse the new LOOP AGAIN statement. Your parser should build a parse tree for the new statement. Use the source files LoopTest.txt and LoopErrors.txt to test your modified parser. Team assignment, due Wednesday, Sept. 18 Start with the compiler code from Chapter 7

Lab Assignment #3, cont’d BEGIN {main} i := 0; LOOP i := i + 2; When i = 12 ==>; agaIn; IF i = 12 THEN BEGIN WHEN i = 13 ==>; i := i + 4; WHEN i > 20 ==>; AGAIN; END; END LoopTest.txt LoopErrors.txt BEGIN {main} i := 1; LOOP When i = 10; i := i + 1; agaIn; WHEN i >= 14 ==>; END