vote up 16 vote down star
10

I've used lex and yacc (more usually bison) in the past for various projects, usually translators (such as a subset of EDIF streamed into an EDA app). Additionally, I've had to support code based on lex/yacc grammars dating back decades. So I know my way around the tools, though I'm no expert.

I've seen positive comments about Antlr in various fora in the past, and I'm curious as to what I may be missing. So if you've used both, please tell me what's better or more advanced in Antlr. My current constraints are that I work in a C++ shop, and any product we ship will not include Java, so the resulting parsers would have to follow that rule.

flag

3 Answers

vote up 27 vote down check

One major difference is that ANTLR generates an LL(*) parser, whereas YACC and Bison both generate parsers which are LALR. This is an important distinction for a number of applications, the most obvious being operators:

expr ::= expr '+' expr
       | expr '-' expr
       | '(' expr ')' ;

ANTLR is entirely incapable of handling this grammar as-is. To use ANTLR (or any other LL parser generator), we would need to convert this grammar to something which is not left-recursive. However, Bison has no problem with grammars of this form. You would need to declare '+' and '-' as left-associative operators, but that is not strictly required for left recursion. A better example might be dispatch:

expr ::= expr '.' ID '(' actuals ')' ;

actuals ::= actuals ',' expr ;

Notice that both the expr and the actuals rules are left-recursive. This produces a much more efficient AST when it comes time for code generation because it avoids the need for multiple registers and unnecessary spilling (a left-leaning tree can be collapsed whereas a right-leaning tree cannot).

In terms of personal taste, I think that LALR grammars are a lot easier to construct and debug. The downside is you have to deal with somewhat cryptic errors like shift-reduce and (the dreaded) reduce-reduce. These are errors that Bison catches when generating the parser, so it doesn't effect the end-user experience, but it can make the development process a bit more interesting. ANTLR is generally considered to be easier to use than YACC/Bison for precisely this reason.

link|flag
Excellent all around – dmercer Oct 17 '08 at 17:01
1  
Thanks! :-) Parser generators are good fun. – Daniel Spiewak Oct 17 '08 at 17:06
So Antlr's big, possibly single, advantage in your perception is that it generates fewer errors like s-r and r-r during the construction phase? I expect I'll give it a try, but will probably end up sticking with what I know... – Don Wakefield Oct 18 '08 at 4:19
Yeah, that's pretty much it. :-) I don't really agree either with the popular opinion that ANTLR is easier than Bison, so I think I would agree with your decision. – Daniel Spiewak Oct 18 '08 at 15:38
Does the 'actuals' rule need a second rule to indicate that a simple 'expr' is an actual? Otherwise, nice explanation. – Jonathan Leffler Dec 27 '08 at 7:05
show 4 more comments
vote up 4 vote down

Another advantage of ANTRL is that you can use ANTLRWORKS, although I can't say that this is a strict advantage, as there may be similar tools for other generators as well.

link|flag
vote up 4 vote down

A couple advantages for ANTLR:

  • can output parsers in various languages - Java not required for running the generated parser.
  • Awesome GUI makes grammar debugging easy (e.g. you can see the generated AST's right in the GUI, no extra tools required)
  • Generated code is actually human-readable (it's one of the goals of ANTLR) and the fact that it generates LL parsers surely helps in this regard.
  • definition of terminals is context-free as well (as opposed to regex in (f)lex) - thus permitting, for instance, the definition of terminals containing properly-closed parentheses

My .02$

link|flag

Your Answer

Get an OpenID
or

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