You are on page 1of 18

welcOme

INTRODUCTION

We associate information with a language construct by attaching


attributes to the grammar symbols representing the
construct.

There are two notations for the productions:


Syntax Directed Definitions (SDD)
Translation Schemes
Syntax Directed Definitions (SDD) :

A Syntax Directed Definition (SDD) specifies the values of attributes by associating semantic
rules with the grammar productions.

Translation Schemes (SDT) :

A Syntax Directed Translation (SDT) scheme embeds program fragments


called semantic actions within production bodies.
Syntax Directed Definition (SDD)

Syntax directed definition is a CFG together with attributes and rules.


Attributes are ssociated with the grammar symbols and the rules are
associated with the productions. If X is a symbol and ‘a’ is one of its
attributes, then we write X.a to denote the value of a at a particular parse
tree node labelled X. Attributes are properties associated with grammar
symbols. Attributes can be numbers, strings, memory locations, data
types, etc.
Based on the way the attributes get their values, they
can be broadly divided into two categories :

1. Inherited Attributes
2. Synthesized Attributes
Inherited Attributes:
These are attributes that inherit their values from their parent or sibling nodes.

EXAMPLE :

B can take values from A , C and D . C can take values from A , B and D.
Likewise D can take values from A , B and C
Computation of Inherited Attributes :

 Contruct the SSD using semantic actions.

 The annotated parse tree is generated and attributes values are computed in
top down manner
Consider the following grammar and its corresponding semantic rules:
Synthesized Attributes:

Attributes which get their values from their children nodes i.e. value of synthesized
attribute at node is computed from the values of attributes at children nodes in
parse tree.

EXAMPLE :

If S is taking values from its child node (A, B, C), then it is said to be a synthesized
attribute,as the value of ABC are synthesized to S.
Computation of Synthesized Attributes:

 Write the SSD using appropriate semantic rules for each production in given
grammar

 The annotated parse tree is generated and attributes values are computed in
bottom up manner.

 The value obtained at roof node is the final output.


Consider the following grammar and its corresponding semantic rules:
Evaluation orders for SDD’s
 Implementing a Syntax Directed Definition consists primarily in finding an order
for ghe evaluation of attributes.

 Each attribute value must be available when a computation is performed.

 Dependency Graphs are the most general technique used to evalute syntax.
directed definitions with both synthesized and inherited attributes.

 Annoted parse tree shows the values of attributes, dependency graph helps to
determine how those values are computed.
Dependency Graphs:

 A dependency graph depicts the flow of information among the attribute


instances in a particular parse tree.

 An edge from one attribute instance to another means that the value of the
first is needed to compute the second. Edges express constraints implied by the
semantic rules.

 There is a node for each attribute; If attribute b depends on an attribute c there is


a link from the node for c to the node for b (b ← c).
There are two kinds of SDDs :

1. S-attributed SDD
2. L-attributed SDD
S-attributed SDD:

An SDD that involves only synthesized attributes is known as S-attributed SDD.


When an SDD is S-attributed, we can evaluate its attributes in any bottom-up order
of the nodes of the parse tree.
L-attributed SDD:

This is the second class of SDD which can contain synthesized as well as inherited
attributes. Also we have to note that, between the attributes associated with a
production body, dependency graph edges can go from left-to-right, but not from
right-to-left (and hence the name “L-attributed”). A L-attributed SDD will be
evaluated from top-to-down and left-to-right.
Syntax Directed Translation (SDT):

It is a CFG with program fragments embedded with the production body. The
program fragments are known as the semantic actions.
THANK YOU

You might also like