Chapter 5 Syntax-Directed Translation Section 0 Approaches to implement Syntax-Directed Translation 1、Basic idea Guided by context-free grammar (Translating.

Slides:



Advertisements
Similar presentations
SYNTAX DIRECTED TRANSLATION 11CS Types of Attributes There are two types of attributes for non- terminals :- Synthesized Attributes : For a non-terminal.
Advertisements

Chapter 5 Syntax-Directed Translation. Translation of languages guided by context-free grammars. Attach attributes to the grammar symbols. Values of the.
Chapter 5 Syntax Directed Translation. Outline Syntax Directed Definitions Evaluation Orders of SDD’s Applications of Syntax Directed Translation Syntax.
1 Error detection in LR parsing Errors are discovered when a slot in the action table is blank. Canonical LR(1) parsers detect and report the error as.
1 Beyond syntax analysis An identifier named x has been recognized. Is x a scalar, array or function? How big is x? If x is a function, how many and what.
Lecture # 17 Syntax Directed Definition. 2 Translation Schemes A translation scheme is a CF grammar embedded with semantic actions rest  + term { print(“+”)
Intermediate Code Generation Professor Yihjia Tsai Tamkang University.
Abstract Syntax Tree (AST)
Syntax Directed Translation
Syntax-Directed Translation Context-free grammar with synthesized and/or inherited attributes. The showing of values at nodes of a parse tree is called.
CH4.1 CSE244 Syntax Directed Translation Aggelos Kiayias Computer Science & Engineering Department The University of Connecticut 371 Fairfield Road, Unit.
Yu-Chen Kuo1 Chapter 2 A Simple One-Pass Compiler.
Syntax-Directed Translation
Chapter 2 Chang Chi-Chung rev.1. A Simple Syntax-Directed Translator This chapter contains introductory material to Chapters 3 to 8  To create.
Abstract Syntax Trees Lecture 14 Wed, Mar 3, 2004.
Copyright © 2005 Elsevier Chapter 4 :: Semantic Analysis Programming Language Pragmatics Michael L. Scott.
2.2 A Simple Syntax-Directed Translator Syntax-Directed Translation 2.4 Parsing 2.5 A Translator for Simple Expressions 2.6 Lexical Analysis.
Topic #5: Translations EE 456 – Compiling Techniques Prof. Carl Sable Fall 2003.
Syntax-Directed Translation
1 Semantic Analysis Aaron Bloomfield CS 415 Fall 2005.
Semantic Analysis1 Checking what parsers cannot.
Topic: Syntax Directed Translations
COP4020 Programming Languages Semantics Prof. Xin Yuan.
Lesson 11 CDT301 – Compiler Theory, Spring 2011 Teacher: Linus Källberg.
Syntax Directed Translation. Tokens Parser Semantic checking TAC Peephole, pipeline, …… TAC  assembly code/mc Cmm subexpression,……
Topic #2: Infix to Postfix EE 456 – Compiling Techniques Prof. Carl Sable Fall 2003.
CS 363 Comparative Programming Languages Semantics.
Overview of Previous Lesson(s) Over View  An ambiguous grammar which fails to be LR and thus is not in any of the classes of grammars i.e SLR, LALR.
Chapter 5: Syntax directed translation –Use the grammar to direct the translation The grammar defines the syntax of the input language. Attributes are.
1 November 19, November 19, 2015November 19, 2015November 19, 2015 Azusa, CA Sheldon X. Liang Ph. D. Computer Science at Azusa Pacific University.
Scribe Sumbission Date: 28 th October, 2013 By M. Sudeep Kumar.
Chapter 5. Syntax-Directed Translation. 2 Fig Syntax-directed definition of a simple desk calculator ProductionSemantic Rules L  E n print ( E.val.
Review: Syntax directed translation. –Translation is done according to the parse tree. Each production (when used in the parsing) is a sub- structure of.
Overview of Previous Lesson(s) Over View  In syntax-directed translation 1 st we construct a parse tree or a syntax tree then compute the values of.
1 Syntax-Directed Translation Part I Chapter 5 COP5621 Compiler Construction Copyright Robert van Engelen, Florida State University, 2007.
1 Syntax-Directed Translation We associate information with the programming language constructs by attaching attributes to grammar symbols. 2.Values.
國立台灣大學 資訊工程學系 薛智文 98 Spring Syntax-Directed Translation (textbook ch#5.1–5.6, 4.8, 4.9 )
Syntax Directed Definition and Syntax directed Translation
UNIT – 5 SYNTAX-DIRECTED TRANSLATION
1 A Simple Syntax-Directed Translator CS308 Compiler Theory.
Syntax-Directed Definitions and Attribute Evaluation Compiler Design Lecture (02/18/98) Computer Science Rensselaer Polytechnic.
Overview of Previous Lesson(s) Over View 3 Model of a Compiler Front End.
Copyright © 2009 Elsevier Chapter 4 :: Semantic Analysis Programming Language Pragmatics Michael L. Scott.
Chapter 8: Semantic Analyzer1 Compiler Designs and Constructions Chapter 8: Semantic Analyzer Objectives: Syntax-Directed Translation Type Checking Dr.
SDTs used to implement SDDs A non-cyclic SDD (having definitions of attributes) can always be implemented by a SDT (having actions that assign values to.
Semantic Analysis Attribute Grammar. Semantic Analysis  Beyond context free grammar  Is x declared before it is used?  Is x declared but never used?
CSE 420 Lecture Program is lexically well-formed: ▫Identifiers have valid names. ▫Strings are properly terminated. ▫No stray characters. Program.
LECTURE 10 Semantic Analysis. REVIEW So far, we’ve covered the following: Compilation methods: compilation vs. interpretation. The overall compilation.
Chapter4 Syntax-Directed Translation Introduction : 1.In the lexical analysis step, each token has its attribute , e.g., the attribute of an id is a pointer.
CS 404Ahmed Ezzat 1 CS 404 Introduction to Compiler Design Lecture 9 Ahmed Ezzat Semantic Analysis.
Semantic analysis Jakub Yaghob
Semantics Analysis.
Syntax-Directed Translation
A Simple Syntax-Directed Translator
Compiler Construction
Chapter 5 Syntax Directed Translation
Abstract Syntax Trees Lecture 14 Mon, Feb 28, 2005.
Syntax-Directed Translation Part I
Chapter 5. Syntax-Directed Translation
Lecture 11: Context Sensitive Analysis
Syntax-Directed Translation Part I
Syntax-Directed Translation Part I
פרק 5 תרגום מונחה תחביר תורת הקומפילציה איתן אביאור.
Compilers Principles, Techniques, & Tools Taught by Jing Zhang
Syntax-Directed Translation Part I
SYNTAX DIRECTED DEFINITION
Directed Acyclic Graphs (DAG)
Syntax-Directed Translation Part I
Chapter 5 Syntax Directed Translation
Presentation transcript:

Chapter 5 Syntax-Directed Translation Section 0 Approaches to implement Syntax-Directed Translation 1、Basic idea Guided by context-free grammar (Translating when parsing ) Attaching attributes to the grammar symbols representing the program construction. Values for attributes are computed by “semantic rules ”associated with the grammar productions.

Chapter 5 Syntax-Directed Translation Section 0 Approaches to implement Syntax-Directed Translation 2、Two notations for associating semantic rules with productions Syntax-directed definitions High-level specifications for translations Hide implementation details No need to specify explicitly the order in which translation take place EE1+E2 {E.val=E1.val+E2.val}

Chapter 5 Syntax-Directed Translation Section 0 Approaches to implement Syntax-Directed Translation 2、Two notations for associating semantic rules with productions Translation schemes Indicate the order in which semantic rules are to be evaluated. Allow some implementation details to be shown S{B.ps=10}B{S.ht=B.ht}

3、Conceptual view of syntax-directed translation Chapter 5 Syntax-Directed Translation Section 0 Approaches to implement Syntax-Directed Translation 3、Conceptual view of syntax-directed translation Notes: 1)Evaluation of the semantic rules may generate code, save information in a symbol table , issue error messages, or perform any other activities. Input string Parse tree Dependency graph Evaluation order for semantic rules

Chapter 5 Syntax-Directed Translation Section 0 Approaches to implement Syntax-Directed Translation 3、Conceptual view of syntax-directed translation Note: 2) Special cases of syntax-directed definitions can be implemented in a single pass by evaluating semantic rules during parsing, without explicitly constructing a parse tree or a graph showing dependencies between attributes.

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions A generalization of a context-free grammar in which each grammar symbol has an associated set of attributes

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 2)Attribute Represent anything we choose: a string, a number, a type, a memory location, etc. Notes: The value of an attribute at a parse-tree node is defined by a semantic rule associated with the production used at that node.

Synthesized attribute Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 1、Definitions 3)Types of Attribute Synthesized attribute The value of a synthesized attribute at a node is computed from the values of attributes at the children of that node in the parse tree Inherited attribute The value of an inherited attribute is computed from the values of attributes at the siblings and parent of that node.

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 4)Dependency graph A graph that represents dependencies between attributes set up by the semantic rules Notes: (1)From the dependency graph,we can derive an evaluation order for the semantic rules (2)Evaluation of the semantic rules defines the values of the attributes at the nodes in the parse tree (3)Semantic rule may have side effects, e,g, printing a value

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 5)Annotated parse tree A parse tree showing the values of attributes at each node Notes: The process of computing the attribute values at the nodes is called annotating or decorating the parse tree.

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 2、Form of a Syntax-Directed Definition Each grammar production A  has associated with it a set of semantic rules of the form b=f(c1,c2,….,ck), f is a function, 1) b is a synthesized attribute of A c1, c2,….,ck are attributes belonging to the grammar symbols of the production

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 2、Form of a Syntax-Directed Definition 2) b is an inherited attribute of one of the grammar symbols on the right side of the production c1, c2,….,ck are attributes belonging to the grammar symbols of the production Notes: In either case, we say that attribute b depends on attributes c1, c2,….,ck

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 3、Attribute grammar A syntax-directed definition in which the functions in semantic rules cannot have side effects. Notes: (1)Functions in semantic rules will often be written as expressions. (2) Occasionally, semantic rules are written as procedure calls or program fragments (in the time, we name the attribute of non-terminal as a dummy attribute) (3)Values for attributes of terminals are usually supplied by the lexical analyzer

E.g. Production Semantic rules A E n (n for new-line) Print(E.val) (A has a dummy attribute) E E (1)*E(2) E.val= E(1).val* E(2).val E E (1) + E(2) E.val= E(1).val+E(2).val E (E (1)) E.val= E(1).val E  digit E.val=digit.lexval

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 4、 Synthesized Attributes S-attributed definition A syntax-directed definition that uses synthesized attributes exclusively

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 4、 Synthesized Attributes 2)Annotation for a parse tree for an S-attributed definition By evaluating the semantic rules for the attributes at each node bottom up, from the leaves to the root.

E.g. Annotated parse tree for 3*5+4 n L n E.val=19 E.val=15 + T.val=4 F.val=4 T.val=15 digit.lexval=4 T.val=3 * F.val=5 F.val=3 digit.lexval =5 digit.lexval =3

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 5、Inherited Attributes Although it is always possible to rewrite a syntax-directed definition to use only synthesized attributes, it is often natural to use syntax-directed definition with inherited attributes.

E.g. Syntax-directed definition with inherited attribute L.in Production Semantic rules D T L L.in=T.type T int T.type= integer T real T.type=real L L (1),id L (1).in=L.in addtype(id.entry, L.in) L  id

E. g. Parse tree with inherited attribute in at each node labeled L E.g. Parse tree with inherited attribute in at each node labeled L. (real id1,id2,id3) D T.type=real L.in=real real L.in=real , id3 L.in=real , id2 id1

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 6、Dependency graphs 1)Definition A directed graph that describes the inter-dependencies among the inherited and synthesized attributes at the nodes in a parse tree 2)Constructing a dependency graph for a given parse tree

for each node n in the parse tree do for each attribute a of the grammar symbol at n do construct a node in the dependency graph for a; for each semantic rule b=f(c1,c2,……,ck) associated with the production used at n do for (i=1, i<=k ,i++) construct an edge from the node for ci to the node for b;

2) Constructing a dependency graph for a given parse tree Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 6、Dependency graphs 2) Constructing a dependency graph for a given parse tree E.g. when the following production is used in a parse tree, construct the dependency graph. Production Semantic rules E E (1) + E(2) E.val= E(1).val+E(2).val

E •val E(1) + E(2) Val val The three nodes of the dependency graph marked by • represent the synthesized attributes E.val, E(1).val, and E(2).val at the corresponding nodes in the parse tree. The dotted lines represent the parse tree and are not part of the dependency graph.

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 7、 Evaluation order 1) Basic idea In the topological sort of a DAG

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 7、 Evaluation order 2)Topological sort of a DAG Any ordering m1,m2,…,mk of the nodes of the graph such that edges go from nodes earlier in the ordering to later nodes. Notes: From a topological sort of a dependency graph, we obtain an evaluation order for the semantic rules.

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 7、 Evaluation order 3)An example

D T type 4 in 5 L 6 real in 7 L 8 , id3 3 entry In 9 L 10 , id2 2 entry id1 1 entry

From this topological sort, we obtain the following program From this topological sort, we obtain the following program.(ai for the attribute associated with the node numbered i in the dependency graph.) a4=real; a5=a4; Addtype (id3.entry, a5); a7=a5; Addtype (id2.entry, a7); a9=a7; Addtype (id1.entry, a9);

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 7、 Evaluation order 4)Methods for evaluating semantic rules Parse-tree methods Obtain an evaluation order from a topological sort of the dependency graph constructed from the parse tree for each input. Notes: It will fail if the dependency graph for the particular parse tree has a cycle.

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 7、 Evaluation order 4)Methods for evaluating semantic rules (2)Rule-based methods At compiler-construction time, the semantic rules associated with productions are analyzed. Notes: For each production, the order is predetermined .

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 7、 Evaluation order 4)Methods for evaluating semantic rules (3)Oblivious methods An evaluation order is chosen without considering the semantic rules. Note. Its order restricts the class of syntax-directed definitions that can be implemented.

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 7、 Evaluation order 4)Methods for evaluating semantic rules Notes: Rule-based and oblivious methods need not explicitly construct the dependency graph at compiler time, so they can be more efficient in their use of compiler time and space

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 8、How to use syntax-directed definitions to specify translations Bottom-up evaluation of the S-attributed definitions Top-down translation of L-attributed definitions

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 10、 L-attributed Definition A syntax-directed definition is L-attributed if each inherited attribute of Xj,1<=j<=n, on the right side of A X1X2…Xn, depends only on 1)The attributes of the symbols X1,X2,…Xj-1 to the left of Xj in the production and 2)The inherited attributes of A.

Chapter 5 Syntax-Directed Translation Section 1 Syntax-Directed Definitions 10、 L-attributed Definition Note: 1) L-attributes can always be evaluated in depth-first order 2) “L” means “left”, because L-attribute information appears to flow from left to right 3)Every S-attributed definition is L-attributed, because the restrictions in the definition apply only to inherited attributes.

Chapter 5 Syntax-Directed Translation Section 2 Bottom-up evaluation of the S-attributed definitions 1、Basic idea Evaluated by a bottom-up parser as the input is being parsed. The parser keeps the values of the synthesized attributes associated with the grammar symbols on its stack.

Chapter 5 Syntax-Directed Translation Section 2 Bottom-up evaluation of the S-attributed definitions 1、Basic idea When a reduction is made, the values of the new synthesized attributes are computed from the attributes appearing on the stack for the grammar symbols on the right side of the reducing production.

Chapter 5 Syntax-Directed Translation Section 2 Bottom-up evaluation of the S-attributed definitions 1、Basic idea Notes: 1)A translator for an S-attributed definition can often be implemented with an LR-parser 2)The stack is used to hold information about sub-trees that have been parsed. 3)We can use extra fields in the parser stack to hold the values of synthesized attributes

Chapter 5 Syntax-Directed Translation Section 2 Bottom-up evaluation of the S-attributed definitions 1、Basic idea E.g. State Symbol Val … X X.val Y Y.val

2、Evaluating the Synthesized attributes Chapter 5 Syntax-Directed Translation Section 2 Bottom-up evaluation of the S-attributed definitions 2、Evaluating the Synthesized attributes Production Code fragment L E$ Print(val[top]) E E (1) + T Val[ntop]= val[top-2]+val[top] E T TT (1)*F Val[ntop]= val[top-2]*val[top] T F F(E) Val[ntop]= val[top-1] F  digit

Moves made by translator on 3*5+4$

Transformed translation scheme with right-recursive grammar E T {R.i=T.val} R {E.val=R.s} R + T {R1.i=R.i+T.val} R1 {R.s=R1.s} Notes: “s” means synthesized attribute , ”i” means inherited attribute

Transformed translation scheme with right-recursive grammar R  {R.s=R.i} T ( E ) {T.val=E.val} T num {T.val=num.val} Notes: “s” means synthesized attribute,”i” means inherited attribute

Evaluation of the expression 9+5+2. T.val=9 R.i=9 Num.val=9 + T.val=5 R.i=4 Num.val=2  Num.val=5 + T.val=2 R.i=6