LR(k) grammars are grammars that can be parsed bottom-up from the left-to-right, producing a rightmost derivation, using k tokens of lookahead. LR(k) parsers are among the most powerful deterministic parsers available, but are often too large to use in practice.
3
votes
0answers
34 views
Parsing a string with LR parsing table. [migrated]
me and my friends are studying for an upcoming test and this exercise is one of the harder ones for us.
We have been trying to solve it and we have been looking at similar exercises, the problem is ...
0
votes
0answers
16 views
For a LR parser to accept string, must CFG have augmented grammar/epsilon production?
In the case of the CFG:
S → E
E → E + T |T
T → a|(E)
Can we make a LR parser with this grammar as it is?
Or does it require adding a new start state (augmented grammar):
S'→ S
S → E
E → ...
1
vote
2answers
43 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
104 views
Is LR(2) parser a subset of LL(3)?
I'm asked if LL(3) is a subset of LR(2) and vice versa.
I succeeded to prove that LL(3) is not a subset of LR(2):
In LL(3) we can recognize the rule after reading 3 characters past the beginning.
...
2
votes
1answer
55 views
Why do we put 'A' as the look ahead symbol when all have `$`?
I am using canonical LR Method to construct the Parsing table.
Consider the grammar :
s -> D C A
s -> D a B
a -> C
s -> a A
The book I am reading mentions the first closure state as :
...
0
votes
0answers
74 views
LR(0) or SLR grammar (parsing table)
I'm studying compilers at the moment and am a bit stuck on the following question. We have two grammars as follows:
Grammar 1
S -> A
A -> A11
A -> 1
Grammar 2
S -> A
A -> 1A1
A -> 1
And we're ...
-1
votes
1answer
26 views
Can SLR grammar have empty productions?
I've wrote following grammar:
S->S ( S ) S
S->e
e stands for "empty string"
So the language this grammar recognizes includes all strings with matching left and right parenthesis, like (), ...
0
votes
0answers
22 views
Transform LR(2) grammar to LR(1)
I've an exercise in which I have LR(2) grammar and I want to transform in LR(1) grammar. But I don't see how I can do that.
I've this grammar (4 rules) :
e -> true | false | id | e ^ e | e v e | ...
2
votes
1answer
119 views
How to solve LR(1) grammar ambiguity between ternary expressions (a ? b : c) and “maybe” expressions (a?)?
I have created a grammar, a stripped-down version of which is reproduced below:
(0) exp1: ternary;
(1) exp1: exp2;
(2) ternary: exp2 "?" exp1 ":" exp1;
(3) exp2: exp2 "+" exp3;
(4) exp2: exp3;
(5) ...
1
vote
1answer
128 views
Why are there LR(0) parsers but not LL(0) parsers?
I've been reading on both in Wikipedia, and noticed that although LR(0) parsers exist, there's no such thing as LL(0) parser.
From what I read, I understand that the k in LL(k)/LR(k) means how many ...
22
votes
2answers
214 views
How do Java, C++, C#, etc. get around this particular syntactic ambiguity with < and >?
I used to think C++ was the "weird" one with all the ambiguities with < and >, but after trying to implement a parser I think I found an example which breaks just about every language that uses ...
0
votes
1answer
98 views
Where can I find a _simple_, easy to understand implementation of an LR(1) parser generator?
Where can I find a simple (as much as possible, but no simpler!) implementation of an LR(1) parser generator?
I'm not looking for performance, just the ability to generate the LR(1) states (item ...
4
votes
1answer
119 views
What's are reasonable upper bounds for the number of states, symbols, and rules of LR(1) grammars?
I'm making an LR(1) parser, and I've run across performance bottlenecks in various places.
I'd like to try optimizing the the data structures for the parser, but in order to do so, I need a rough ...
2
votes
2answers
373 views
LR(1) Item DFA - Computing Lookaheads
I have trouble understanding how to compute the lookaheads for the LR(1)-items.
Lets say that I have this grammar:
S -> AB
A -> aAb | a
B -> d
A LR(1)-item is an LR(0) item with a ...
0
votes
0answers
87 views
LR Parser GOTO Function and Epsilon
I'm trying to learn compiler construction and I just read through the Dragon Book chapter on SLR parsers. So, I decided to make a simple grammar and try to hand code the parser. The grammar looks like ...
2
votes
1answer
128 views
Is Wikipedia's example on FOLLOW() sets in LR(1) parsing wrong?
I can't tell if I'm misunderstanding what's going on, or if Wikipedia's explanation is incorrect.
Wikipedia says:
FOLLOW(k,B) of an item set k and an nonterminal B is the union of the follow sets ...
0
votes
2answers
121 views
Parsing: A grammar in LL(3) but not in LR(2) [closed]
I'm trying to prove that LL(3) is not a subset of LR(2).
Intuitively it's easy, but I can't point my intuition into finding such a grammar.
Could you please give me a hand? Thanks for any help
2
votes
1answer
252 views
Why can't a compiler have a “shift/shift” conflict?
I currently am studying about compilers and as I understand in LR(0) there are cases where we have "shift/reduce" or "reduce/reduce" conflicts, but it's impossible to have "shift/shift" conflicts! Why ...
2
votes
1answer
118 views
How can an LR(0) parser ever leave state 0?
I've read Wikipedia's explanation at least a dozen times, but I'm still confused at how an LR(0) parser ever leaves state 0.
Wikipedia's example, with its explanation, says:
The parser starts out ...
1
vote
1answer
741 views
Unable to record https application in VUGen (Loadrunner)
IE8
LR11
Protocol: HTTP/HTML
application:https
When i tried to record https:// application in VUGen (loadrunner 11) i am unable to record and get an error message "Internet Explorer cannot diplay the ...
5
votes
1answer
220 views
What is the closure of a left-recursive LR(0) item with epsilon transitions?
Let's say I have this grammar:
A: ε
| B 'a'
B: ε
| B 'b'
What is considered to be the closure of the item A: • B 'a'?
In other words, how do I deal with the epsilon transitions when figuring out ...
0
votes
1answer
127 views
What's wrong with my LR(0) grammar?
I'm trying to make my own LR(0) parser, and I'm running into trouble with some grammars.
Basically, for the grammar
exp: mexp
mexp: '1'
mexp: mexp '*' '1'
my parser is outputting
State 0: • 1
...
1
vote
0answers
20 views
Anything wrong with reusing a subset of terminals already used in BNF for an LR lex/parser?
Please excuse my terminology as I am still getting my head wrapped around everything. I am trying to put together my first parser and have trying to find as many examples as I can to in trying to ...
1
vote
0answers
93 views
Postfix and right-associative operators in LR(0) parsers
Is it possible to construct an LR(0) parser that could parse a language with both prefix and postfix operators? For example, if I had a grammar with the + (addition) and ! (factorial) operators with ...
2
votes
3answers
248 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 ...
0
votes
1answer
37 views
In the context of writing a parser based on the LR(0) algorithm what are magic and tau steps?
A task that I have to do specifies:
Start by defining the non-deterministic machine which performs shift-reduce stages with the help of magic or tau steps
However, I can't find any references to ...
1
vote
2answers
153 views
How can a lexer extract a token in ambigous languages?
I wish to understand how does a parser work. I learnt about the LL, LR(0), LR(1) parts, how to build, NFA, DFA, parse tables, etc.
Now the problem is, i know that a lexer should extract tokens only ...
2
votes
1answer
99 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
1k views
How is the following grammar LR(1) but not SLR(1)
S ::= a A | b A c | d c | b d a
A ::= d
I'm getting pretty confused with it all and can't figure it out...
1
vote
0answers
162 views
New parser generator [closed]
I'm working on a new LR parsing tool for my needs. I want to know whether there are any similar tools available?
It's a dynamic parser generator. The programmer can derive from one of available ...
0
votes
1answer
101 views
LR Parser reduce/reduce (YACC, etc.)
Assuming I have the following context-free grammar, in that particular order (for YACC):
z → x
z → z x
If I have an input of:
(z (z x
Will the parser reduce:
'x' to 'z'
'z x' to 'z'
I am ...
0
votes
2answers
173 views
Discussion of LR(1) items: meaning?
What is the canonical LR(1) items ! I have read the Dragon Book, It confuses Me , (delta,gamma,toh,...)
Can Someone help me with this issue ?
What is this meaning in English? [A - > alpha.Bbeta , ...
3
votes
2answers
146 views
Parsing the Context-free-Grammars
I know that a bottom-up parser is better than a top-down parser because it can accept left-recursive grammar, what can be other reasons that we prefer bottom-up parsing over top-down parsing?
8
votes
1answer
626 views
Example of a LR grammar that cannot be represented by LL?
All LL grammars are LR grammars, but not the other way around, but I still struggle to deal with the distinction. I'm curious about small examples, if any exist, of LR grammars which do not have an ...
10
votes
1answer
5k views
How to identify whether a grammar is LL(1), LR(0) or SLR(1)?
How do you identify whether a grammar is LL(1), LR(0), or SLR(1)?
Can anyone please explain it using this example, or any other example?
X → Yz | a
Y → bZ | ε
Z → ...
6
votes
1answer
754 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 ...
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 ...
15
votes
2answers
4k views
Difference between SLR Parsers and LR(0) Parsers?
I am working on my compilers concepts however I am a little confused...
Googling got me nowhere to a definite answer.
Is SLR and LR(0) parsers one and same? If not, whats the difference?
2
votes
1answer
668 views
Why are all LL(1) grammars LR(1)?
It's a widely-known fact that any LL(1) grammar is also LR(1), but I can't seem to find a rigorous proof of this anywhere. I've heard some high-level overviews of the proof (for example, that since ...
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 ...
0
votes
1answer
294 views
LR Parsing for arithmetic expressions
I have got LR grammar and LR table for expressions like (1+1),1+(a+1)
0: E’->E
1: E ->E + T
2: E-> T
3: T ->T * F
4: T-> F
5: F ->( E )
6: F-> id
string[,] ActionTable =
//+ * ...
1
vote
2answers
210 views
LR(k) parsers, with k infinite, not restricted to deterministic context-free languages?
Is a theoretical LR parser with infinite lookahead capable of parsing (unambiguous) languages which can be desribed by a context-free grammar?
Normally LR(k) parsers are restricted to deterministic ...
33
votes
1answer
7k views
What is the difference between LL and LR parsing?
Can anyone give me a simple example of LL parsing versus LR parsing?
6
votes
5answers
3k views
Limitations of LL vs LR parsers?
I know the basic differences of LL vs LR parsers. I also know that GLR, SLR, and LALR are all extensions of LR parsers. So my question in more details is...
Given a LL(*) parser and any variation on ...
2
votes
1answer
681 views
Display valid LR(0) items
I have to create a C++ program to display the valid LR(0) items in SLR parsing in compiler design. Till now I am able to take the grammar as an input from the user and find its closure. But i am not ...
1
vote
2answers
164 views
Trying to write a parser
I'm trying to parse a syntax using the Shunting Yard (SY) algorithm. The syntax includes the following commands (they're are many many others though!)
a + b // a and b are numbers
setxy c d //c,d can ...
0
votes
1answer
520 views
QTP LoadAndRunAction — transaction times from callee part of caller's run result?
If I call an action X from another test A using LoadAndRunAction, are transaction times that are collected in the called action reported correctly?
I.e. if I insert such a caller script A into a ...
0
votes
2answers
823 views
LR custom log files: How can I get them from the generator machines?
Suppose I have a VUGen C test which writes results to some data log file, i.e. it lists processed IDs or something like that in a file that is created (or appended) upon init, written to in the main ...
0
votes
4answers
399 views
Writing manual parser
I need write a parser manually. Can`t choose between LL(*) and LR (maybe try Earley?). Should I use bottom-up parsing, because grammar for LL will be rather difficult?
4
votes
1answer
2k views

