Attribute grammar

An attribute grammar is a formal way to define attributes for the productions of a formal grammar, associating these attributes to values. The evaluation occurs in the nodes of the abstract syntax tree, when the language is processed by some parser or compiler.

The attributes are divided into two groups: synthesized attributes and inherited attributes. The synthesized attributes are the result of the attribute evaluation rules, and may also use the values of the inherited attributes. The inherited attributes are passed down from parent nodes.

In some approaches, synthesized attributes are used to pass semantic information up the parse tree, while inherited attributes help pass semantic information down and across it. For instance, when constructing a language translation tool, such as a compiler, it may be used to assign semantic values to syntax constructions. Also, it is possible to validate semantic checks associated with a grammar, representing the rules of a language not explicitly imparted by the syntax definition.

Attribute grammars can also be used to translate the syntax tree directly into code for some specific machine, or into some intermediate language.

One strength of attribute grammars is that they can transport information from anywhere in the abstract syntax tree to anywhere else, in a controlled and formal way.

Example

The following is a simple Context-free grammar which can describe a language made up of multiplication and addition of integers.

 Expr  Expr + Term
 Expr  Term
 Term  Term * Factor
 Term  Factor
 Factor  "(" Expr ")"
 Factor  integer

The following attribute grammar can be used to calculate the result of an expression written in the grammar. Note that this grammar only uses synthesized values, and is therefore an S-attributed grammar.

 Expr1  Expr2 + Term [ Expr1.value = Expr2.value + Term.value ]
 Expr  Term [ Expr.value = Term.value ]
 Term1  Term2 * Factor [ Term1.value = Term2.value * Factor.value ]
 Term  Factor [ Term.value = Factor.value ]
 Factor  "(" Expr ")" [ Factor.value =  Expr.value ]
 Factor  integer [ Factor.value = strToInt(integer.str) ]

Synthesized attributes

◦The value is computed from the values of attributes of the children
◦S-attributed grammar - synthesized attributes only
◦Bottom-up propagation

Let be an Attribute grammar, where

is a synthesized attribute if,

Inherited attributes

An inherited attribute at a node in parse tree is defined using the attribute values at the parent or siblings. Inherited attributes are convenient for expressing the dependence of a programming language construct on the context in which it appears. For example, we can use an inherited attribute to keep track of whether an identifier appears on the left or the right side of an assignment in order to decide whether the address or the value of the identifier is needed. In contrast to synthesized attributes, inherited attributes can take values from parent and/or siblings. As in the following production, S → ABC A can get values from S, B, and C. B can take values from S, A, and C. Likewise, C can take values from S, A, and B.

Special types of attribute grammars

See also

External links

This article is issued from Wikipedia - version of the 10/18/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.