Tagged Questions
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 ...
10
votes
3answers
219 views
Are C# and Java Grammars LALR(x)?
I wonder if C# and Java grammars are LALR(x)? If yes, what's the value of x?
Edit:
After accepting the true answer, I think it is better to change the Q in this way:
Is there any LALR(x) parser ...
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:
...
7
votes
1answer
113 views
Putting nodes into the parse tree which shouldn't be there
I am writing a parser for a language, and the scanner is designed to
either also return unneeded terminals (e.g. whitespacing) OR
not to do so
based on a boolean flag.
Now, in the parser, I don't ...
5
votes
1answer
153 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 ...
5
votes
2answers
227 views
Learning bison: What are context-free grammars and LALR(1)?
I am reading this bison introduction.
I have two questions and it will be great if someone can help me understand:
What does term context free grammar mean?
From the link above: Not all ...
5
votes
2answers
701 views
LALR(1) or GLR on Windows - Alternatives to Bison++ / Flex++ that are current?
I have been using the same version of bison++ (1.21-8) and flex++ (2.3.8-7) since 2002.
I'm not looking for an alternative to LALR(1) or GLR at this time, just looking for the most current options. ...
4
votes
1answer
231 views
LALR(2) dangling else
Is LALR(2) able to handle the dangling else case naturally (without any special rules, as with LALR(1))?
Thanks
3
votes
1answer
425 views
Packrat parsing vs. LALR parsing
A lot of websites states that packrat parsers can parse input in linear time.
So at the first look they me be faster than LALR parser contructed by the tools yacc or bison.
I wanted to know if the ...
3
votes
3answers
307 views
LALR Parser Generator Implementation Problem
I'm currently trying to implement a LALR parser generator as described in "compilers principles techniques and tools" (also called "dragon book").
A lot already works. The parser generator is ...
2
votes
1answer
68 views
How does the yacc/bison LALR(1) algorithm treat “empty” rules?
In a LALR(1) parser, the rules in the grammar are converted into a parse table that effectively says "If you have this input so far, and the lookahead token is X, then shift to state Y, or reduce by ...
2
votes
1answer
190 views
How to understand LALR Shift/Reduce Algorithm
I'm trying to read Compiler Construction by Niklaus Wirth. On page 23 he starts to describe how LALR would parse the expression x*(y+z) given the following grammar:
E = T | E "+" T. expression
T ...
2
votes
2answers
247 views
LALR(1) empty list of parameters for functions
I have a simple LALR(1) grammar, but I'm encountering a problem.
start ::= spec.
spec ::= MOD STRING top_stmt.
spec ::= top_stmt.
top_stmt ::= stmt.
top_stmt ::= conditional.
stmt ::= expr.
stmt ::= ...
1
vote
1answer
93 views
Simple Grammar for Lemon LALR Parser
I've been stuck with this since a while now. I want to parse something as simple as:
LIKES: word1 word2 .. wordN HATES: word1 word2 .. wordN
I am using Lemon+Flex. At the moment my Grammar looks ...
1
vote
1answer
131 views
bison/yacc grammar disambiguation
I have following bison grammar (as part of more complex grammar):
expression:
IDENTIFIER
| CONST
| LAMBDA match_block
;
match_block:
pattern '=' expression
| match_block '|' ...
1
vote
2answers
614 views
What is the best LALR parser generator for C++ that can generate meaningful error messages
I am looking for the best solution for a LALR parser generator for C++ that will allow me to generate really good error messages. I really hate the syntax errors that MySQL generates and I want to ...
1
vote
1answer
598 views
Resolving a shift/reduce conflict in an LALR parser
I've been using PLY to build up a parser for my language, however I've got a shift/reduce conflict that's causing me some trouble. My language has generic types with a syntax ala C++ templates. So ...
1
vote
2answers
3k views
How to resolve a shift-reduce conflict in unambiguous grammar
I'm trying to parse a simple grammar using an LALR(1) parser generator (Bison, but the problem is not specific to that tool), and I'm hitting a shift-reduce conflict. The docs and other sources I've ...
1
vote
3answers
4k views
How to fix YACC shift/reduce conflicts from post-increment operator?
I'm writing a grammar in YACC (actually Bison), and I'm having a shift/reduce problem. It results from including the postfix increment and decrement operators. Here is a trimmed down version of the ...
0
votes
0answers
19 views
LALR(k) to LALR(1) factoring explanation and/or examples
According to this post in Recursive Descent vs. LALR
, any LALR(k) can be converted to an LALR(1) via "factoring". I do not own the Dragon Book mentioned in the post, is there some explanation or ...
0
votes
1answer
45 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 ...
0
votes
3answers
460 views
How to write LALR parser for some grammar in Java?
I want to write Java code to build a LALR parser for my grammar. Can someone please suggest some books or some links where I can learn how to write Java code for a LALR parser?
Thanks in advance
0
votes
1answer
95 views
Java CUP resources, is it still used?
I have recently been tasked to working on code that uses Java CUP. Does anybody still use it? I've found a couple small resources on it, but it looks like there isn't much documentation on the main ...
0
votes
2answers
157 views
How can I remove the function call ambiguity from a Lemon grammar?
I have the following lemon grammar (simplified from the real grammar):
%right ASSIGN .
%nonassoc FN_CALL .
program ::= expression .
expression ::= expression ASSIGN expression .
expression ::= ...
0
votes
1answer
170 views
Template class using Gold Parser and the Klimstra engine
I'm using Klimstra's VB.NET template from the "Create skeleton program" of the GOLD parser but the resulting template has methods with the overrides keyword and inherits from "TemplateParser".. that ...
-1
votes
1answer
106 views
Recursive descent vs recursive ascent parsing
If I'm writing my own custom parser, how can I know if I'm writing a recursive ascent parser? I'm definitely interested in the O(n) complexity of LALR parsing (plus I already have a LALR grammar) and ...