LL(k) grammars are grammars that can be parsed from left-to-right, creating a leftmost derivation, using k tokens of lookahead.
0
votes
1answer
15 views
Explanations about FOLLOW function - Grammar
I've some problems to understand the function FOLLOW. I cannot calcule follow functions of a grammar and that's not good. I tried exercises to understand this function and in particulary this ...
1
vote
1answer
27 views
Is this grammar for matched brackets LL(1)?
The grammar is this:
S -> e (epsilon)
S -> TS
T -> (S)
I think it is indeed LL(1), my justification is that for a grammar to be LL(1), for each nonterminal that has more than 1 production rule, ...
1
vote
1answer
38 views
Multiple entries in an LL(1) parsing table?
Given this grammar:
S → S1 S2
S1 → a | ε
S2 → ab | ε
Therefore, we have
FIRST(S1) = { a, ε }
FOLLOW(S1) = { a }
Does that mean that in ...
0
votes
1answer
104 views
Is LR(2) parser a subset of LL(3)?
I'm asked if LL(3) is a subset of LR(2) and vice versa.
I succeeded to prove that LL(3) is not a subset of LR(2):
In LL(3) we can recognize the rule after reading 3 characters past the beginning.
...
2
votes
3answers
67 views
Why can't a LL grammar be left-recursive?
In the dragon book, LL grammar is defined as follows:
A grammar is LL if and only if for any production A -> a|b, the following two conditions apply.
FIRST(a) and FIRST(b) are disjoint. This ...
0
votes
1answer
141 views
LL(1) context free grammar square bratckets example [closed]
I am trying to solve LL(1) Context free grammar example.
All operators (like +, -, '(', ')', /, *(binary - multiply), &, *(unary - dereferencing pointer), id) are not a problem but square ...
0
votes
3answers
106 views
LL(1) Parsing — First(A) with Recursive First Alternatives
How would I apply the FIRST() rule on a production such as :
A -> AAb | Ab | s
where A is a non-terminal, and b,s are terminals.
FIRST(A) of alternatives 1 & 2 would be A again, but such would ...
0
votes
1answer
43 views
Grammars && LL Parsers
So I have a homework assignment and I've spent over 2hrs trying to find out why this grammar will not work with a LL parser:
<A> → a <B>
<A> → a b <C>
<B> → b d ...
2
votes
1answer
222 views
Making a Grammar LL(1)
I have the following grammar:
S → a S b S | b S a S | ε
Since I'm trying to write a small compiler for it, I'd like to make it LL(1). I see that there seems to be a FIRST/FOLLOW conflict here, and I ...
0
votes
2answers
77 views
linux ll output interpretation [closed]
this is a regular output an ll command
drwxr-xr-x 2 something root 4096 2008-11-04 16:58 something
I would like to ask if this output is like this,
crwxr-xr-x 2 something root 4096 ...
1
vote
1answer
128 views
Why are there LR(0) parsers but not LL(0) parsers?
I've been reading on both in Wikipedia, and noticed that although LR(0) parsers exist, there's no such thing as LL(0) parser.
From what I read, I understand that the k in LL(k)/LR(k) means how many ...
1
vote
1answer
71 views
Formal Reason Why LL Grammar excludes Left-Recursion
I am currently reading the Dragon Book in my free time. The book states that a grammar is LL if and only if for any production A -> a|b, the following two conditions apply.
1) FIRST(a) and FIRST(b) ...
0
votes
2answers
121 views
Parsing: A grammar in LL(3) but not in LR(2) [closed]
I'm trying to prove that LL(3) is not a subset of LR(2).
Intuitively it's easy, but I can't point my intuition into finding such a grammar.
Could you please give me a hand? Thanks for any help
0
votes
1answer
60 views
On FOLLOW-Sets of Grammars
Here http://slkpg.byethost7.com/llkparse.html the FOLLOW_k-Sets are defined
"The FOLLOWk set of a string of
symbols in a grammar is a set of k-length terminal symbol strings in
the grammar ...
3
votes
2answers
219 views
ANTLR: Difference between backtrack and look-ahead?
I relative new to ANTLR. I have an very easy grammar:
start :
('A' 'B' 'C' '1'
|'A' 'B' 'C' '2'
|'A' 'B' 'C' '3'
)
;
I think that I already understand the basics of the concept of look ahead ...
2
votes
1answer
67 views
Is there a well-defined and well-reasoned transformation from LL(*) to PEG?
I am in the process of investigating PEG (Parsing Expression Grammar) parsers, and one of the topics I'm looking into is equivalence with other parsing techniques.
I found a good paper about ...
1
vote
1answer
61 views
Grammar refactoring for LL parsing
In a simple example, I'm confused about how to turn this grammar into a LL one by removing the left recursion. Any hints are welcome.
G = {
A -> A a | A B | a
B -> b
}
I get ...
0
votes
1answer
204 views
Is this BNF grammar LL(1)?
Can someone please confirm for me if the following BNF grammar is LL(1):
S ::= A B B A
A ::= a
A ::=
B ::= b
B ::=
where S is the start symbol and non terminals A and B can derive to epsilon. I ...
6
votes
2answers
636 views
LALR vs LL parser
I've been using lex/yacc and now I'm trying to switch to ANTLR. The major concern is that ANTLR is an LL(*) parser unlike yacc which is LALR. I'm used to thinking bottom-up and I don't exactly know ...
1
vote
1answer
133 views
Can a ANTLR grammar file be modified to be used by PLY?
I want to make a python program that uses PLY to parse Javascript files, I din't found any sources of parsers that implement the ECMAScript, Javascript rules that use PLY.
The only thing I found was ...
4
votes
1answer
671 views
Performance of parsers: PEG vs LALR(1) or LL(k)
I've seen some claims that optimized PEG parsers in general cannot be faster than optimized LALR(1) or LL(k) parsers. (Of course, performance of parsing would depend on a particular grammar.)
I'd ...
1
vote
2answers
241 views
Problems with LL(1) grammar
I have a 26 rule grammar for a sub-grammar of Mini Java. This grammar is supposed to be non-object-oriented. Anyway, I've been trying to left-factor it and remove left-recursion. However I test it ...
-3
votes
1answer
212 views
Solve this using predicitive parser LL1 parser
Solve this question using predicitive parser LL1 parser
E-> E O E | (E) | id
O -> + /- / % /
1
vote
2answers
391 views
Operator associativity using Scala Parsers
So I've been trying to write a calculator with Scala's parser, and it's been fun, except that I found that operator associativity is backwards, and that when I try to make my grammar left-recursive, ...
1
vote
1answer
180 views
How can I resolve this without using backtrack=true?
I'm trying to make a grammar that doesn't have operator precedence, but requires that either you use one operator or enclose them in parenthesis. (Using test instead of id|int_literal etc and + ...
6
votes
2answers
196 views
How to manually construct an AST?
I'm currently learning about parsing but i'm a bit confused as how to generate an AST. I have written a parser that correctly verifies whether an expressions conforms to a grammar (it is silent when ...
1
vote
1answer
478 views
LL(1) table-driven (non-recursive) generator
Please, need help. I'm searching for a LL(1) table-driven (non-recursive) generator. Can't find anything on Internet. All I found is a bunch of LR or recursive parsing generators :( Thanks in advance.
...
1
vote
1answer
168 views
LL(1) table-driven compilers with ANTLR or ANTLR3
Is it possible to create a LL(1) table-driven (non-recursive) compiler with ANTLR or ANTLR3 ?
Please help. Thanks in advance.
2
votes
1answer
190 views
Parsec: Predictive parsing
I have only a few skills with haskell and I need help how to implement predictive parsing (LL*) with parsec.
I have context free grammar:
<a> ::= identifier | identifier '(' <args> ')'
...
2
votes
1answer
2k views
How to left factor a context-free grammar?
As I understand, in the following case left factoring is required to build top-down parser.
But it's hard to understand how to do that? Can someone help me here? Thanks.
s = a | b
b = c d
c = (e | f) ...
0
votes
1answer
295 views
non-recursive predictive table-driven LL(1) parser in functional programming
I want to know which is the best way to build a non-recursive predictive table-driven LL(1) parser in functional programming: Hand-coding in Haskell or OCaML or does it exist a tool that can help me ...
3
votes
2answers
146 views
Parsing the Context-free-Grammars
I know that a bottom-up parser is better than a top-down parser because it can accept left-recursive grammar, what can be other reasons that we prefer bottom-up parsing over top-down parsing?
8
votes
1answer
464 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 ...
8
votes
1answer
626 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 ...
10
votes
1answer
5k 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 → ...
4
votes
2answers
255 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 ...
8
votes
2answers
1k 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) ...
5
votes
1answer
530 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 ...
2
votes
1answer
668 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 ...
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 ...
33
votes
1answer
7k views
What is the difference between LL and LR parsing?
Can anyone give me a simple example of LL parsing versus LR parsing?
6
votes
5answers
3k 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 ...
0
votes
2answers
762 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 ...
1
vote
1answer
232 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
399 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?
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:
...
4
votes
1answer
1k 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
335 views
How does an LL parser evaluate this expression?
Considering this expression:
3 + 2 + 2 * 2 = ?
Would it be 14?
2
votes
1answer
1k 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
584 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 ...


