Lecture 11

  1. Tutorial 6 Compiler
  2. T6 Compiler - Parsing

1.0 - Tutorial 6 Compiler

2.0 - PL0.flex - Lexical Token Parser

2.1 - CUPToken

3.0 - PL0.Cup - Parser and Parser Generator

3.1 - Defining the Terminal Symbols

3.2 - Defining the Non-Terminal Symbols - Expressions

3.2.1 - Parsing a Left Value

LValue ::= IDENTIFIER:id
        {:
            /* At this stage the identifier could be either a constant identifier or 
             * a variable identifier but which cannot be determined until static 
             * checking when the IdentifierNode will be transformed into either
             * a ConstNode or a VariableNode or detected as invalid.
             */
            RESULT = new ExpNode.IdentifierNode(idxleft, id);
        :}
    | error:e
        {:
            RESULT = new ExpNode.ErrorNode(exleft);
        :}
    ;

3.2.2 - Parsing a Condition

3.2.3 - Parsing a RelCondition

/* Relational operators are lower precedence than arithmetic operators. */
RelCondition ::= Exp:e 
        {:
            RESULT = e;
        :}
    |  Exp:e1 Relation:op Exp:e2
        {:
            RESULT = new ExpNode.BinaryNode(opxleft, op, e1, e2);
        :} 
    ;

3.2.4 - Parsing a Relation

Relation ::= EQUALS
        {:
            RESULT = Operator.EQUALS_OP;
        :}
    |  NEQUALS
        {:
            RESULT = Operator.NEQUALS_OP;
        :}
    |  LEQUALS
        {:
            RESULT = Operator.LEQUALS_OP;
        :}
    |  LESS
        {:
            RESULT = Operator.LESS_OP;
        :}
    |  GREATER
        {:
            RESULT = Operator.GREATER_OP;
        :}
    |  GEQUALS
        {:
            RESULT = Operator.GEQUALS_OP;
        :}
    ;

3.2.5 - Parsing an Expression

Exp ::= Term:t
        {:
            RESULT = t;
        :}
    |  Exp:e1 AddOp:op Term:e2
        {:
            RESULT = new ExpNode.BinaryNode(opxleft, op, e1,e2);
        :}
    ;

3.2.6 - Parsing an AddOp

3.2.7 - Parsing a Term

Term ::= Factor:f
        {:
            RESULT = f;
        :}
    |  Term:e1 MulOp:op Factor:e2
        {:
            RESULT = new ExpNode.BinaryNode(opxleft, op, e1,e2);
        :}
    ;

3.2.8 - Parsing a Factor

Factor ::= PLUS Factor:e
        {:
            RESULT = e; 
        :}
    |  UnaryOperator:op Factor:e
        {:
            RESULT = new ExpNode.UnaryNode(opxleft, op, e);
        :}
    |  LPAREN Condition:c RPAREN
        {:
            RESULT = c;
        :}
    |  NUMBER:n
        {:
            RESULT = new ExpNode.ConstNode(nxleft, 
                    Predefined.INTEGER_TYPE, n);
        :}
    |  LValue:lval
        {:
            RESULT = lval;
        :}
    ;

3.2.9 - Parsing a UnaryOperator

UnaryOperator ::= MINUS
        {:
            RESULT = Operator.NEG_OP;
        :}
    ;

The following section looks at parsing statement nodes


3.3 - Defining Non-Terminal Symbols

3.3.1 - Parsing a Compound Statement

CompoundStatement ::= KW_BEGIN StatementList:sl KW_END
        {:
            RESULT = new StatementNode.ListNode(slxleft,sl);
        :}
    ;

3.3.2 - Parsing a StatementList

StatementList ::= Statement:s
        {:
            RESULT = new ArrayList<StatementNode>();
            RESULT.add(s);
        :}
    |  StatementList:sl SEMICOLON Statement:s
        {:
            sl.add(s);
            RESULT = sl;
        :}
    ;

3.3.3 - Parsing a Statement

3.4 - Additional Notes

4.0 - Stack Machine

4.1 - Code Generation

4.2 - Memory Allocation