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.
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:
...
12
votes
3answers
701 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 ...
12
votes
1answer
468 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 = ...
7
votes
4answers
2k 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 ?
7
votes
3answers
1k 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 ...
7
votes
1answer
136 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
2answers
650 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 ...
6
votes
1answer
766 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 ...
6
votes
3answers
7k 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 ...
6
votes
1answer
579 views
Is the order of reduction defined in Yacc?
This is more of an "in principle" question than a practical one. Is the order in which Yacc reduces productions, and reads new tokens from the lexer defined. That is, if I had the following set of ...
5
votes
2answers
652 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
341 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
5
votes
2answers
837 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
929 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
687 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 ...
4
votes
1answer
126 views
Scheme - LALR parser generation- input from a string
We are trying to generate (in guile) a parser and a lexer that read characters from a string instead of stdin.
We started modifying the calculator example included in the code at
...
3
votes
3answers
492 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
2k 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 ...
3
votes
1answer
396 views
LALR(1) parser generator for scala
I know that it's possible to use, for example, bison-generated Java files in scala project, but is there any native "grammar to scala" LALR(1) generators?
2
votes
3answers
2k 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
2
votes
1answer
180 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
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
: '(' ...
2
votes
2answers
810 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
322 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
2answers
323 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 ...
2
votes
1answer
646 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
360 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 ::= ...
2
votes
2answers
5k 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 ...
2
votes
0answers
102 views
Add error checking via production rules to LALR(1) grammar to handle all inputs
I have a grammar that represents expressions. Let's say for simplicity it's:
S -> E
E -> T + E | T
T -> P * T | P
P -> a | (E)
With a, +, *, ( and ) being the letters in my alphabet.
...
2
votes
1answer
139 views
Why is this grammar conflicts?
It is compiled with Lemon, which is a LALR(1) parser generator :
program ::= statement.
statement ::= ifstatement Newline.
statement ::= returnstatement Newline.
ifstatement ::= If Number A ...
1
vote
2answers
2k 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
110 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
50 views
Is there a way to decrease the number of alternatives in this reduction while keeping it LALR(1)?
I currently have a reduction in bison which is meant to match a comma-separated list with several optional different rules:
arg_list
:
| expr_list
| assignment_list
| expr_list ',' ...
1
vote
2answers
823 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
2answers
31 views
Setting precedence levels in BNFC grammar
Background:
I'm taking a class in software semantics, and we are supposed to create a small compiler and runtime for a toy language called while.
We were given a code skeleton for Java, but we are ...
1
vote
1answer
136 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 ...
1
vote
1answer
345 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
1answer
171 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 ...
1
vote
1answer
310 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
1answer
1k 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
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 ...
1
vote
1answer
63 views
Parsing implied versus explicit times operator
I've been writing a LALR parser using ply and have come across an inconsistency when trying to parse multiplication.
As the full parser link is several thousand lines long I won't include it here, ...
1
vote
0answers
39 views
factoring LALR grammar [duplicate]
Possible Duplicate:
Python/YACC: Resolving a shift/reduce conflict
I am trying to create a parser using Ply, which implements a LALR(1) parser like Yacc. However, I've run into a difficult ...
1
vote
1answer
442 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
234 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 .. ...
1
vote
2answers
258 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
35 views
Bison - handling non LALR(1) grammars
I am making a simple calculator using flex, bison.
I developed a grammar which includes two type of expressions - integer expressions and real expressions.
The grammar is similar to this:
exp -> ...
0
votes
2answers
187 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;
...