I am trying to parse CSP(Communicating Sequential Processes) CSP Reference Manual. I have defined following grammer rules.

assignment
    : IDENT '=' processExpression
    ;
processExpression
    :   ( STOP
        | SKIP
        | chaos
        | prefix
        | prefixWithValue
        | seqComposition
        | interleaving
        | externalChoice

        ....

seqComposition
    :   processExpression ';' processExpression
    ;
interleaving
    :   processExpression '|||' processExpression
    ;
externalChoice
    :   processExpression '[]' processExpression
        ;

Now ANTLR reports that

seqComposition 
interleaving
externalChoice

are left recursive . Is there any way to remove this or I should better used Bison Flex for this type of grammar. (There are many such rules) Thanks

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Define a processTerm. Then write rules looking like

assignment
    : IDENT '=' processExpression
    ;
processTerm
    :   ( STOP
        | SKIP
        | chaos
        | prefix
        ...
processExpression
    :   ( processTerm
        | processTerm ';' processExpression
        | processTerm '|||' processExpression
        | processTerm '[]' processExpression

        ....

If you want to have things like seqComposition still defined, I think that would be OK as well. But you need to make sure that the parsing of processExpansion is going to always consume more text as you proceed through your rules.

link|improve this answer
1  
Deleted my answer. Separating terms from operators is definitely the way to go! It would probably be best to factor out processTerm to avoid backtracking, though, unless ANTLR does that automatically? – ikegami Mar 24 '11 at 22:09
1  
processExpression : processTerm ( ';' processExpression | '|||' processExpression | '[]' processExpression | ) ; – ikegami Mar 24 '11 at 22:10
@ikegami: ANTLR is supposed to compile a DFA to do lookahead, which should factor that out automatically. Though it can't hurt to do that for it. Unless, of course, you forget to make a processTerm a processExpansion. :-P – btilly Mar 24 '11 at 22:37
@btilly, I didn't forget, if you're implying that I did. Note the empty alternation. – ikegami Mar 25 '11 at 5:08
@ikegami: Clearly I hadn't noted it before. In part, possibly because that possibility was first on my list and last on yours. – btilly Mar 25 '11 at 6:12
show 6 more comments
feedback

Read the guide to removing left recursion in on the ANTLR wiki. It helped me a lot.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.