I'm using Bison to generate a parser. I've got one shift/reduce conflict where I really need Bison to use GLR rather than LALR to deal with it. But I've passed the %glr-parser directive and the source file still states that it's a LALR parser. I even found a "glr.cc" skeleton which suggests that it is a GLR C++ parser and using it by %skeleton "glr.cc" didn't change the output. Does Bison not ship all algorithms for all it's target languages?

link|improve this question

bison is free software, so you can study and improve its soruce code. By the way, did you consider using another parser generator, like ANTLR ? – Basile Starynkevitch Dec 15 '11 at 21:35
@Basile: My grammar is not LL. As for improving it's source code, you mean, if I wanted to truck through six billion support utilities as well. – DeadMG Dec 15 '11 at 21:37
ANTLR has several hacks to deal with some kinds of non LL grammars. – Basile Starynkevitch Dec 15 '11 at 21:38
@Basile: Why do I care? So does Bison. The ones I'm currently trying to use. Save me the hassle of moving my source code over. – DeadMG Dec 15 '11 at 21:39
I would ask such questions on the mailing list devoted to bison... – Basile Starynkevitch Dec 16 '11 at 6:40
feedback

1 Answer

You just need %glr-parser to get a GLR parser. Note that GLR parsers may STILL have conflicts (shift/reduce or reduce/reduce), its just that the generated parser will try both alternatives and unify the result.

If you want to shut up the messages about the conflicts, you can use %expect and %expect-rr. Hoever, just blindly using a GLR parser where you don't understand what all the conflicts are is dangerous -- the resulting parser might take exponentially long to parse some inputs if you're not careful, or might give you ambiguity errors at runtime.

link|improve this answer
This doesn't really answer the question- I said I attempted %glr-parser – DeadMG Dec 15 '11 at 23:53
@DeadMG: then you got a GLR parser. Its just that GLR parsers have the same shift/reduce and reduce/reduce conflicts as LALR parsers, they just deal with them in a different way. – Chris Dodd Dec 16 '11 at 0:11
I didn't say I didn't have one because it still reported conflicts, I said I still had one because the source file's comments still stated so. – DeadMG Dec 16 '11 at 1:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.