1
vote
2answers
48 views

Is there a way to make this grammar LALR(1)?

I have a grammar with rules like this A -> pq B -> pr Block -> { Astar Bstar } Astar -> Astar A | epsilon Bstar -> Bstar B | epsilon Is there any way to turn this ...
2
votes
3answers
250 views

LR(k) or LALR(k) parser generator with features similar to ANTLR

I'm currently in the process of writing a parser for some language. I've been given a grammar for this language, but this grammar has some left recursions and non-LL(*) constructs, so ANTLR doesn't ...
2
votes
1answer
101 views

How can I resolve a reduce reduce conflict:

The following (simplified) Bison grammar produces a reduce reduce conflict: expr : '(' expr ')' | ID | fn ; arg_list : ID | arg_list ID ; fn : '(' ...
6
votes
1answer
769 views

Why is this LR(1) grammar not LALR(1)?

This is not my homework, I'm trying to understand LALR(k) grammars. So I found this S -> aEa | bEb | aFb | bFa E -> e F -> e I made an analyzer (available as PDF in my git repo as ...
0
votes
1answer
75 views

Extend grammar to support unar operations

I have very simple grammar: E->E+T|T T->T*F|F F->(E)|id And i want to extend it to support unar operations(IMHO this is correct grammar but it may be wrong because i'm real n00b in ...
29
votes
3answers
9k views

Examples of LL(1), LR(1), LR(0), LALR(1) grammars?

Is there a good resource online with a collection of grammars for some of the major parsing algorithms (LL(1), LR(1), LR(0), LALR(1))? I've found many individual grammars that fall into these ...
14
votes
5answers
3k views

What advantages do LL parsers have over LR parsers?

What advantages do LL parsers have over LR parsers to warrant their relative popularity in today's parser generator tools? According to Wikipedia, LR parsing appears to have advantages over LL: ...