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.

learn more… | top users | synonyms

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 ...
-3
votes
0answers
38 views

What is the most complex OOP language grammar feature set that a recursive descent parser can handle without kludges? [closed]

It has been commented that C++ can be done with a recursive descent parser, or with an LL parser, or even with some difficulty and LALR parser, but that these tasks require hacking and kludging. OK, ...
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 ...
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
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 ...
0
votes
1answer
41 views

LALR grammar ambiguous

I have made a grammar for boolean and arithmetic expressions. I want to handle arithmetic expressions like: (1+5)+(-3) I'm done with that work: I can handle all the expressions I want. My ...
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
62 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, ...
0
votes
1answer
29 views

How to fix grammar with optional non-terminal?

I wrote grammar for LALR parser and I am stuck at optional non-terminal. Consider for example C++ dereference, when you can write: ******expression; Of course you can write: expression; And ...
0
votes
2answers
38 views

Where is this shift/reduce conflict coming from in Bison?

I am trying to get the hang of parsing by defining a very simple language in Jison (a javascript parser). It accepts the same / very similar syntax to bison. Here is my grammar: %token INT TRUE ...
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
1answer
28 views

PCYACC expect keyword equivalent

Is there a keyword in PCYACC which is equivalent to BISON's expect declaration: %expect NUMBER
0
votes
1answer
300 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.. Am I ...
0
votes
0answers
39 views

Using astCUP and compiling the generated classes

I am currently working on a project compiler and language that is almost the same as Java. I was able to scan, parse and compile all the generated scanner,sym and parser classes from JFlex and ...
-1
votes
2answers
66 views

Regular vs LALR(1): what is faster

Supposing we have two grammars which define the same languge: regular one and LALR(1) one. Both regular and LALR(1) algorithms are O(n) where n is input length. Regexps are usually preferred for ...
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 ...
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 ...
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 ...
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 ?
1
vote
1answer
49 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 ',' ...
6
votes
1answer
765 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 ...
3
votes
1answer
394 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?
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 ...
0
votes
0answers
78 views

Reduce/reduce conflict in grammar

I'm trying to create a BNF grammar for a language I'm making, but I'm currently stuck with a reduce/reduce conflict that I do not know how to remove. The problem is that an <Expression> can ...
6
votes
2answers
647 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
135 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 ...
2
votes
0answers
101 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
2answers
321 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 ...
0
votes
0answers
95 views

Error recovery in an LALR(1) grammar

I'm using some parser and lexer generating tools (similar to Lex and Bison, but for C#) to generate programs that parse strings into abstract syntax trees that can later be evaluated. I wanted to do ...
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
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 ...
5
votes
2answers
340 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
4
votes
1answer
681 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 ...
0
votes
1answer
124 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 ...
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
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 ::= ...
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
806 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 ...
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 ...
12
votes
3answers
700 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 ...
-2
votes
1answer
275 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 ...
0
votes
1answer
75 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 ...
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> | ...
5
votes
2answers
649 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 ...
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 ...
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; ...
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 ...
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 ...
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 = ...
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 2