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 ...
12
votes
1answer
286 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 = ...
5
votes
1answer
174 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
243 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 ...
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
131 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
75 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
2answers
253 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
929 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
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 ...
0
votes
1answer
48 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
81 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; ...