You are on page 1of 1

The analysis phase of a compiler breaks up a source program into constituent pieces and

produces an internal representation for it, called intermediate code. The synthesis phase
translates the intermediate code into the target program.

The syntax of a programming language describes the proper form of its programs, while the
semantics of the language de_nes what its programs mean; that is, what each program does when
it executes. For specifying syntax, we present a widely used notation, called context-free
grammars.

Besides specifying the syntax of a language, a context-free grammar can be used to help guide
the translation of programs. A grammar-oriented compiling technique known as syntax-directed
translation.

Syntax-directed translation is done by attaching rules or program fragments to productions in a


grammar.

The semantic analyzer uses the syntax tree and the information in the symbol table to check the
source program for semantic consistency with the language definition. It also gathers type
information and saves it in either the syntax tree or the symbol table, for subsequent use during
intermediate-code generation.

Attributes: An attribute is any quantity associated with a programming construct.

(Syntax-directed) translation schemes: A translation scheme is a notation for attaching program


fragments to the productions of a grammar. The program fragments are executed when the
production is used during syntax analysis.

We associate information with a language construct by attaching attributes to the grammar


symbol(s) representing the construct, A syntax-directed definition specifies the values of
attributes by associating semantic rules with the grammar productions. For example, an infix-to-
postfix translator might have a production and rule.

The semantic rule specifies that the string E.code is formed by concatenating E1.code, T.code,
and the character ‘+’.

A syntax-directed translation scheme embeds program fragments called semantic actions within
production bodies, as in

You might also like