Wednesday 23 July 2014

Compiler Construction CS606 Assignment No. 04 Solution 24th July 2014

Question No 1:                                                                                                                       Marks 20
Consider the following grammar productions. Suppose you have an attribute E.type which can be set to either INT or BOOL.  Assume that the type of an expression is set to INT if an error is detected and you have a routine msg() similar to printf() that can be used to print error message.

E  à   CONST                               {E.type=??}
          | ID                                      {E.type =getType(ID.name);}
          | E1 +E2                              {E.type=??}
          | E1< E2                              {E.type=??}
          | E1= =E2                            {E.type=??}
          | (E1)                                    {E.type=??}

Provide the parse tree for the expression (5 < 2) = = (4 + x).