vote up 3 vote down star
2

Which lexer/parser generator is the best (easiest to use, fastest) for C or C++? I'm using flex and bison right now, but bison only handles LALR(1) grammars. The language I'm parsing doesn't really need unlimited lookahead, but unlimited lookahead would make parsing a lot easier. Should I try Antlr? Coco/R? Elkhound? Something else?

flag

What do you mean by "best"? You need to make your question more specific. – Neil Butterworth Mar 30 at 14:28
What are your requirements? Is LALR(1) not sufficient for you, and if so, in what ways? – Brian Campbell Mar 30 at 14:40
I second Brian's question. What do you need to be able to do? How is LALR(1) insufficient? – Scottie T Mar 31 at 3:44
By definition, LALR(1) only handles single token lookahead. If you ever look at any LALR(1) grammar for a language like C++, you'll see all kinds of ugly hacks to make it work. – Zifre Mar 31 at 13:04

6 Answers

vote up 2 vote down check

There are a bunch of good answers to this question already in What parser generator do you recommend

I've done several flex/bison systems myself but now I'd replace both with Lemon from sqlite since it's one tool, re-entrant and thread safe as well as having a streaming/pull-based model.

link|flag
Lemon looks really nice, and I've been able to reduce the grammar to LALR(1), so I might user it. – Zifre Sep 27 at 14:48
vote up 0 vote down

ANTLR makes unlimited lookahead very easy using 'backtrack' option. It might also qualify your 'easiest to use, fastest' criteria since it has ANTLRWORKS that lets you visualize and debug your grammar.

Another advantage is that it makes AST building trivially easy with its built-in support for building ASTs which is missing in bison.

With two books published - 'ANTLR: Definitive guide' and 'Language design patterns', it is one among the very well documented tools available. You also have a very active mailing list.

link|flag
vote up 0 vote down

The latest bison claims to do unlimited lookahead, by (in effect) doing several parses simultaneously. If you already have investment in bison then it may be worth trying this out, rather than switching to another package.

http://www.gnu.org/software/bison/manual/bison.html#GLR-Parsers

I have not used this feature myself, though.

As far as other systems go, I have used ANTLR. I did not particularly like it (the documentation was not very good, and one must manually factor one's grammar to cater for operator precedence), but it did work, and so many swear by it that it is certainly worth looking at.

link|flag
I did try Bison GLR parsing, but it seems to cause some problems with operator precedence and is noticeably slower. ANTLR is hard to use with C++ and I greatly prefer LR over LL style grammars. – Zifre Sep 28 at 22:06
vote up 0 vote down

The bad news is that most real computer langauges aren't "LALR(1)", which means you have to resort to considerable hackery to make YACC parse real langauges. So-called DSLs can be bent during design to make them LALR, so they fare better.

link|flag
vote up 1 vote down

Hello, I have been using the GOLD parsing system (http://www.devincook.com/goldparser) with very good results. My project is small, a parsing system for NC files in C. But I think the tool can handle more complex projects as well.

link|flag
1  
GOLD doesn't appear to work on Linux. – Zifre Mar 30 at 16:13
vote up 0 vote down

I don't know what you are looking for exactly, but I think that Boost Xpressive is worth looking at ...

not exactly a parser generator but a great tool to handle grammars and I feel it can handle weird ones.

link|flag

Your Answer

Get an OpenID
or

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