Tagged Questions
LALR parsers (lookahead LR) are a family of parsers that are often used in parser generators. They provide a balance between the expressivity of LR(1) parsers and the size of LR(0) parsers.
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 ...
12
votes
1answer
281 views
Irony: How to give KeyTerm precedence over variable?
Relevant chunk of Irony grammar:
var VARIABLE = new RegexBasedTerminal("variable", @"(?-i)\$?\w+");
variable.Rule = VARIABLE;
tag_blk.Rule = html_tag_kw + attr_args_opt + block;
term_simple.Rule = ...
10
votes
3answers
222 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
928 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 ...
6
votes
3answers
1k views
Is there a good yacc/bison type LALR parser generator for .NET?
Is there a good yacc/bison type LALR parser generator for .NET ?
5
votes
1answer
156 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
222 views
Visualize LALR grammar
I'd like to visualize a grammar file (actually the Jison grammar for coffee-script). So the input file is a grammar file of Bison/Yacc style. The expected output could be a Graphviz dot file or ...
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 ...
3
votes
2answers
1k views
Left Recursion in Grammar Results in Conflicts
Throughout a Bison grammar I am using right recursion, and I have read that left recursion is better because it doesn't have to build the whole stack first.
However, when I try to switch to left ...
2
votes
1answer
71 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
118 views
How to avoid a shift reduce conflict in a LALR grammar for parsing nested lists?
I would like to create a LALR grammar to parse nested lists, but I get always a shift/reduce conflict.
I have the list1 which is a list of type1 items and list2:
<list1> ::= <type1> | ...
2
votes
1answer
71 views
Ambiguity in Bison grammar
I've got a problem in my Bison grammar. I've got a pair of shift/reduces which are fine, and six reduce/reduces. The issue is that I don't understand how the reduce/reduce conflicts come about, since ...
2
votes
1answer
192 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
250 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
163 views
Bison- shift/reduce conflicts
I know that in Bison code, there are some shift/reduce conflicts to be expected, and the normal C grammar produces one for if/else. However, I've got a grammar that produces 330 other shift/reduce ...
1
vote
1answer
69 views
Actions order in Bison
I'm trying to use Bison to generate a parser, in C++. The grammar is fine, but I'm having some quick trouble with the actions. Here's a simple sample:
statements
: statement
| statements statement;
...
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
132 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
844 views
How to solve a shift/reduce conflict?
I'm using CUP to create a parser that I need for my thesis. I have a shift/reduce conflict in my grammar. I have this production rule:
command ::= IDENTIFIER | IDENTIFIER LPAREN parlist RPAREN;
...
1
vote
1answer
207 views
Implementing eval and load functions inside a scripting engine with Flex and Bison
Hy guys, i'm developing a scripting engine with flex and bison and now
i'm implementing the eval and load functions for this language.
Just to give you an example, the syntax is like :
import std.*;
...
1
vote
2answers
615 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
602 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
2answers
79 views
Ambiguous grammar (using Bison)
I've got a problem with an ambiguous grammar. I've got this:
%token identifier
%token lolcakes
%start program
%%
program
: call_or_definitions;
expression
: identifier
| lolcakes;
...
0
votes
1answer
70 views
Need help regarding one LALR(1) parsing
I am trying to parse a context-free language, called Context Free Art. I have created its parser in Javascript using a YACC-like JS LALR(1) parser generator JSCC.
Take the example of following CFA ...
0
votes
1answer
102 views
GPPG (bison) - How to implement an “expression expression” concept
We're using GPPG (essentially bison for C#) to generate a parser for a programming language. Everything is going great except for one really nasty bit. The language we are parsing has a sort of ...
0
votes
3answers
466 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
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
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
109 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 ...