-3
votes
0answers
39 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, ...
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
2answers
42 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 ...
1
vote
1answer
64 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
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 ...
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 ...
3
votes
1answer
400 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?
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
651 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 ...
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
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 ...
4
votes
1answer
689 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 ...
6
votes
1answer
769 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 ...
12
votes
3answers
703 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
2answers
815 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
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 ...
5
votes
2answers
653 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 ...
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 ...
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 ...
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
1answer
346 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 '|' ...
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
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
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 ...
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: ...
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
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 ...
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
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 ...
5
votes
2answers
930 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. ...
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 ::= ...
1
vote
2answers
824 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 ...
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
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 ...
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 ...
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 ...