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 define a LL requirement by saying that FIRST(a) and FIRST(b) with A -> a|b; must not have any elements in common. (a and b represent strings of terminals and nonterminals)
Although i never read about it, i would say that for LR(k) parsers it would be a requirement that FIRST(a) and FIRST(b) have no terminals in common with A -> a and B -> b where A and B depict different nonterminals (and maybe additionally A and B can/must depict the same nonterminal??).
I would say that the LL requirement can be weaker because if you have the following grammar:
Rule0 -> 'a' 'b'
Rule1 -> 'a' 'c'
Rule3 -> Rule0 | ('x' Rule1)
This grammar should be conform to LL. The FIRST-Sets of rule0 and rule1 are identical but they belong to different nonterminals.
So during an LL(1) parsing-session we could find ourselves at this point:
void Rule3() {
if (lookahead == 'x') {
match(curSymbol); //curSymbol == x
Rule1();
}
else
Rule0();
which wouldn't be a problem i guess.
But what if we have "ab" as input and we would use a LR(1) parser. I would say that there is no way to decide which rule to use first (either rule 0 or 1). So LR(k) has a stricter FIRST-requirement, is that right?
Also in the dragon book i only found left factoring which is useful for predective (e.g. LL) parsing. In my opinion some sort of left refactoring where you take the overlapping part and make a new rule for it could also help for LR(k) parsers. So the above grammar would transform into
HelpingRule -> 'a'
Rule0 -> HelpingRule 'b'
Rule1 -> HelpingRule 'c'
Rule3 -> Rule0 | ('x' Rule1)
So is this correct?
There is also a definition for LR(k) grammars on the german wikipedia that uses FIRST-Sets but i don't understand it: http://de.wikipedia.org/wiki/LR%28k%29-Grammatik