The lr tag has no wiki summary.
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 ...
9
votes
5answers
1k 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:
...
7
votes
2answers
596 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?
5
votes
1answer
98 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 ...
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
1answer
542 views
What is the difference between LL and LR parsing?
Can anyone give me a simple example of LL parsing versus LR parsing?
4
votes
5answers
991 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
215 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 ...
2
votes
1answer
250 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 ...
2
votes
2answers
756 views
1
vote
0answers
76 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 ...
1
vote
2answers
119 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 ...
1
vote
1answer
801 views
Every LR(0) grammar is SLR(1) but vice versa need not necessarily be true, why?
Every LR(0) grammar is SLR(1) but vice versa need not necessarily be true, why?
1
vote
2answers
197 views
If the grammar is ambiguous then there exists exactly one handle for each sentential form.?
there can be two productions from which we can do the reduction. After giving precedence and associations as required there will be one handle only.so is this statement true??
0
votes
0answers
12 views
Need help on implementing extended LR parser
I am writing an extended LR parser that uses the similar technique of multithreading as in GLR parser.
Does anybody has any pointers, which could help me?
Thanks in advance.
0
votes
2answers
24 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 , ...
0
votes
1answer
265 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 → ...
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
0answers
61 views
LR parser or recursive ascent parser
As an example, for a simple context free grammar like,
S -> 12A
A -> 4 or 5A
How should LR (recursive ascent not table based) parser be implemented for it. Sample code in C or any language would be ...
0
votes
0answers
90 views
FIRST-Set and LR(k) parsers
How come that when you read about First-Sets it's nearly always in conjunction with LL(k) parsers. LR(k) parsers are mentioned rarely.
Lets take the dragon book for example. The FIRST-Set is used to ...
0
votes
1answer
127 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 =
//+ * ...
0
votes
1answer
336 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
249 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
200 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?