Tagged Questions
LL(k) grammars are grammars that can be parsed from left-to-right, creating a leftmost derivation, using k tokens of lookahead.
20
votes
1answer
4k views
Difference between an LL and Recursive Descent parser?
I've recently being trying to teach myself how parsers (for languages/context-free grammars) work, and most of it seems to be making sense, except for one thing. I'm focusing my attention in ...
19
votes
3answers
1k 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 ...
9
votes
5answers
927 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:
...
5
votes
1answer
84 views
Example of a LR grammar that cannot be represented by LL?
All LL grammars are LR grammars, but not the other way around, but I still struggle to deal with the distinction. I'm curious about small examples, if any exist, of LR grammars which do not have an ...
5
votes
2answers
170 views
How to determine if a language is LL(1)?
I have a grammar and I can check whether or not is is LL(1). However, is there any way to check if the language generated by the grammar is LL(1)? And what exactly is the difference between LL(1) ...
4
votes
1answer
173 views
Finding a language that is not LL(1)?
I've been playing around with a lot of grammars that are not LL(1) recently, and many of them can be transformed into grammars that are LL(1). However, I have never seen an example of an unambiguous ...
4
votes
1answer
419 views
What is the difference between LL and LR parsing?
Can anyone give me a simple example of LL parsing versus LR parsing?
4
votes
5answers
848 views
Limitations of LL vs LR parsers?
I know the basic differences of LL vs LR parsers. I also know that GLR, SLR, and LALR are all extensions of LR parsers. So my question in more details is...
Given a LL(*) parser and any variation on ...
3
votes
3answers
74 views
Assignment as expression in Antlr grammar
I'm trying to extend the grammar of the Tiny Language to treat assignment as expression. Thus it would be valid to write
a = b = 1; // -> a = (b = 1)
a = 2 * (b = 1); // contrived but valid
a = 1 ...
3
votes
1answer
604 views
Top-Down Parser want to have decent case example left-recursion in a 'Code'
Hello fellow stack over flow members.
I'm studying for compiler class.
I did understand Top-Down Parser should avoid left-recursion, and transform into right-recursion way.
Questions are,
a) am I ...
2
votes
1answer
189 views
Why are all LL(1) grammars LR(1)?
It's a widely-known fact that any LL(1) grammar is also LR(1), but I can't seem to find a rigorous proof of this anywhere. I've heard some high-level overviews of the proof (for example, that since ...
2
votes
1answer
214 views
How does an LL parser evaluate this expression?
Considering this expression:
3 + 2 + 2 * 2 = ?
Would it be 14?
2
votes
1answer
687 views
Antlr left recursive problem
I have a left recursive issue in my Antlr grammar. While I think I understand why there is a problem I am unable to think of a solution. The issue is with the last line for my datatype rule. I have ...
2
votes
1answer
334 views
Markdown blockquote parsing with ANTLR
This has been something that's been bothering me for a while. How does one go about parsing the following text into the HTML below using ANTLR? I can't seem to wrap my head around this at all.
Any ...
1
vote
0answers
34 views
How to construct parsing table for LL(k>1)?
On the web, there is a lot of examples showing how to construct parsing tables for a context-free grammar from first/follow sets for LL(1) parser.
But I haven't found anything useful related to k>1 ...
0
votes
0answers
24 views
Are there any books about LL grammar design?
There are many books for parsers and compilers, but I've realized that for the guy who wants to build a parser, these books rarely help in solving LL grammar design issues.
I've been dealing with ...
0
votes
1answer
146 views
How to identify whether a grammar is LL(1), LR(0) or SLR(1)?
How do you identify whether a grammar is LL(1), LR(0), or SLR(1)?
Can anyone please explain it using this example, or any other example?
X → Yz | a
Y → bZ | ε
Z → ...
0
votes
0answers
79 views
FIRST-Set and LR(k) parsers
How come that when you read about First-Sets it's nearly always in conjunction with LL(k) parsers. LR(k) parsers are mentioned rarely.
Lets take the dragon book for example. The FIRST-Set is used to ...
0
votes
2answers
310 views
Writing correct LL(1) grammars?
I'm currently trying to write a (very) small interpreter/compiler for a programming language. I have set the syntax for the language, and I now need to write down the grammar for the language. I ...
0
votes
1answer
97 views
Convert LALR to LL
I have this (working) LALR grammar for SABLECC:
Package org.univpm.grail.sable;
Helpers
digit = [ '0' .. '9' ];
letter = [ [ 'a' .. 'z' ] + [ 'A' .. 'Z' ] ];
any_character = [ 0 .. ...
0
votes
4answers
195 views
Writing manual parser
I need write a parser manually. Can`t choose between LL(*) and LR (maybe try Earley?). Should I use bottom-up parsing, because grammar for LL will be rather difficult?
0
votes
1answer
116 views
Where is boost::lambda::ll?
I can't seem to find boost::lambda::ll for a nested ll::for_each() invocations in any header file in the boost_1_39_0 distribution. Could someone point me to the right direction? Thanks.