|
Page 2 of 2
Green dreams
You can think of the BNF rules that define a language as a way of generating examples of the language or of testing to see if a statement is a valid example of the language. Generating examples is very easy – rather like playing dominoes with production rules. You pick a rule and select one of the parts of the rule separated by “OR” and then try and find a rule that starts with any non-terminal on the right. You replace the non-terminal items until you have a symbol string with no non-terminal items – this is a legal example of the language. You can represent a parse by a “syntax tree” showing how the terminal symbols are related by each of the rules. This sounds complicated but syntax trees are easy to understand.
Working the other way, i.e. from an example of the language to a set of production rules that produce it, turns out to be much more difficult. Finding the productions is called “parsing” the expression and which parsing algorithms work well can depend on the nature of the grammar. That is, particularly simple grammars can be parsed using particularly simple and efficient methods. At this point the typical course in computer science spends a great deal of time explaining the different parsing algorithms available and a great many students simply cannot see the wood for the trees – syntax trees that is! While the study of parsing methods is important, you only understand why you are doing it when you discover what parsing can do for you.
Obviously if you can construct a legal parse of an expression then the expression is grammatical and this is worth knowing. For example, any reasonable grammar of arithmetic expression would soon throw out /3+*5 as nonsense because there is no set of productions that create it. This is valuable but there is more. If you have parsed an expression the way that it is built up shows you what it means. This is a function of grammar that is usually ignored because grammar is supposed to be only to do with syntax, which is supposed to have nothing to do with meaning. In English for example you can have syntax without meaning -
“The green dream sleeps furiously.”
is a perfectly good English sentence from the point of view of grammar but, ignoring poetry for the moment, it doesn’t have any meaning. It is pure syntax without any semantics. This disassociation of syntax and semantics is often confused with the idea that syntax conveys no meaning at all and this is wrong. For example, even in our nonsense sentence you can identify that something “the dream” has the property “green” and it is doing something, i.e. “sleeping”, and that it is doing it in a certain way, i.e. “furiously”. This is a lot of information that is brought to you courtesy of the syntax and while the whole thing may not make sense the syntax is still doing its best to help you get at the meaning.
Syntax is semantics
The same is true of the grammar of a programming language. Consider the arithmetic expression that gave us so much trouble in a previous article i.e. 3+2*5. A simple grammar for this type of expression, leaving out the obvious detail, might be
<expression> -> <expression> + <expression> | <expression> * <expression>
This parses the expression perfectly but it doesn’t help with the meaning of the expression because there are two possible ways that the grammar fits –
<expression> -> <expression 1>+<expression 2> 3 + 2*5
or
<expression> -> <expression 1>*<expression 2> 3+2 * 5
These are both perfectly valid parses of the expression as far as the grammar is concerned but only the first parsing groups the expressions together in a way that is meaningful. We know that the 2 and 5 should group as a unit of meaning and not the 3 and the 2. This grammar gives rise to two possible syntax trees –

We need to use a grammar that reflects the meaning of the expression.
For example, the grammar:
<expression> -> <multi –expression> + <multi-expression> <multi-expression> -> <value> * <value> | <value>
also allows 3+2*5 to be legal but it only fits in one way:
<expression> -> <multi-expression> + <multi-expression> 3 + 2*5
<multi-expression> -> <value> * <value> 2 5
This means that this particular grammar only gives the syntax tree that corresponds to the correct grouping of the arithmetic operators and their operands. In this case we have a grammar that reflects the semantics or meaning of the language and this is vital if the grammar is going to help with the translation. There may be many grammars that generate a language and any one of these is fine for generating an expression or proving an expression legal but when it comes to parsing we need a grammar that means something.
Travelling the tree
Now that we have said the deeply unfashionable thing that syntax is not isolated from semantics we can now see why we bother to use a grammar analyser within a compiler. Put simply a syntax tree or its equivalent can be used to generate the machine code that the expression corresponds to. The syntax tree can be considered as a program that tells you how to evaluate the expression. For example, a common method of generating code from a tree is to walk all its nodes using a “depth first” algorithm. That is, visit the deepest nodes first and generate an instruction corresponding to the value or operator stored at each node. The details of how to do this vary but you can see the general idea in this diagram.

So now you know. We use grammar to parse expressions, to make syntax trees, to generate the code. Now find out about different types of grammar and parsing methods – they are important.
To follow on: The power of language
Further reading:
A Concise Introduction to Languages and Machines
<ASIN:1848001207>
<ASIN:0465030793>
|