Tagged Questions

A parser-generator is a tool that accepts a grammar description of a language (usually as an extended Backus-Naur Formalism (EBNF)), and generates computer code that will parse the language described by that grammar. Parser generators may produce recursive descent parsers, Earley parsers, L(AL)R parsers, or other more exotic parser types.

learn more… | top users | synonyms

32
votes
11answers
6k views

What parser generator do you recommend

I'm currently shopping for a FOSS parser generator for a project of mine. It has to support either C or C++. I've looked at bison/flex and at boost::spirit. I went from writing my own to spirit to ...
22
votes
5answers
4k views

What are the disadvantages of the Spirit parser-generator framework from boost.org?

In several questions I've seen recommendations for the Spirit parser-generator framework from boost.org, but then in the comments there is grumbling from people using Spirit who are not happy. Will ...
16
votes
1answer
592 views

Scala Parsers: Availability, Differences and Combining?

My question is about the Scala Parsers: Which ones are available (in the Standard library and outside), what's the difference between them, do they share a common API and can different Parsers be ...
15
votes
4answers
603 views

What is the advantage of using a parser generator like happy as opposed to using parser combinators?

To learn how to write and parse a context-free grammar I want to choose a tool. For Haskell, there are two big options: Happy, which generates a parser from a grammar description and *Parsec, which ...
15
votes
5answers
577 views

Are there any LL Parser Generators for Functional Languages such as Haskell or Scala?

I've noticed a distinct lack of LL parsers that create parsers in functional languages. The ideal find for what I've been looking for without success is something to generate a Haskell parser for an ...
15
votes
5answers
820 views

Scannerless Parser Generators

Prologue: Although the set of languages recognized by parsers (context-free grammars) is strictly larger than the one of scanners (regular grammars), most parser generators need a scanner. (Please ...
12
votes
3answers
2k views

Lex and Yacc in PHP

Is there an implementation of Lex and Yacc in PHP? If not, can anyone suggest a lexical analyser and parser generator (ie, anything like Lex and Yacc) that will create PHP code. I'm not too worried ...
11
votes
2answers
402 views

Lemon power or not?

For grammar parser, I used to "play" with Bison which have its pros/cons. Last week, I noticed on SqLite site that the engine is done with another grammar parser: Lemon Sounds great after reading ...
9
votes
5answers
927 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: ...
9
votes
4answers
1k views

GLR parsing algorithm resources

I am writing a GLR parser generator and would like some advice on resources relating to this algorithm both on the internet and of the dead-tree variety (books for those unfamiliar with the ...
8
votes
1answer
199 views

non-greedy matching in Scala RegexParsers

Suppose I'm writing a rudimentary SQL parser in Scala. I have the following: class Arith extends RegexParsers { def selectstatement: Parser[Any] = selectclause ~ fromclause def selectclause: ...
8
votes
8answers
743 views

Are there any free parser generators that generate C++ code and handle Unicode correctly?

After asking this question, I'm now sold on trying to use a parser generator, where before I was going to write things manually. However, I can't seem to find any such parser that generates C++ code, ...
8
votes
3answers
303 views

Source of parsers for programming languages?

I'm dusting off an old project of mine which calculates a number of simple metrics about large software projects. One of the metrics is the length of files/classes/methods. Currently my code ...
7
votes
2answers
403 views

What is wrong with this ParseKit BNF?

I'm using ParseKit for objective-C which takes a BNF-like syntax for specifying grammers: @start = command+; command = new; new = 'new' object ';'; object = 'house' | other; Inclusion of the last ...
7
votes
3answers
625 views

Any BNF IDE with test features

I'm working on a new language and while writting the grammar I'd like to be able to test the grammar for completeness, conflicts and similar. I'm not really concern about the underlaying parser ...
7
votes
5answers
4k views

How can I build a Truth Table Generator?

I'm looking to write a Truth Table Generator as a personal project. There are several web-based online ones here and here. (Example screenshot of an existing Truth Table Generator) I have the ...
6
votes
4answers
188 views

Build parser from grammar at runtime

Many (most) regular expression libraries for C++ allow for creating the expression from a string during runtime. Is anyone aware of any C++ parser generators that allow for feeding a grammar ...
6
votes
1answer
133 views

Bison - additional parameter to a push and pure parser

How can I pass one aditional parameter (not the token minor of type YYSTYPE) to the yypush_parse() function? The parser is indeed reentrant, but this one aditional variable is crucial for the ...
6
votes
1answer
111 views

heap handling in a bison push pure parser

Is there any way to specify my own allocator/deallocator functions for heap management instead of malloc()/free() for a pure push parser in bison?
6
votes
1answer
316 views

Is this grammar not LR(1)?

I'm working on parse generator for PHP. Currently I'm trying to implement canonical LR(1) parser, but it outputs reduce-reduce conflict on following grammar. Is this grammar not LR(1)? Or should I ...
6
votes
4answers
3k views

What is a good C# compiler-compiler/parser generator?

I'm looking for a parser generator that given an EBNF for a LL(k) language will give me a C# parser and generate classes the types defined in the EBNF.
6
votes
5answers
943 views

What is the most widely used parser generator for C#?

I'm looking for anyone with some experience using a parser generator that is either design for or has C# available as a target language. What seems to be the standard? Some of the options I have ...
6
votes
11answers
2k views

How can I parse code to build a compiler in Java?

I need to write a compiler. It's homework at the univ. The teacher told us that we can use any API we want to do the parsing of the code, as long as it is a good one. That way we can focus more on the ...
5
votes
5answers
405 views

What is the fastest parser generator tool for C# output?

I am looking for a parser generator tool which gives C# output and fairly fast. My objective is to parse JSON like text and create CLR object out of it. I used GOLD Parser engine for this but it ...
5
votes
1answer
873 views

Limitations of PEG grammar & parser generators?

I was enjoying using YARD a lot: http://www.ootl.org/yard/ http://code.google.com/p/yardparser/ http://www.codeproject.com/KB/recipes/yard-tokenizer.aspx I was able to construct fully functional ...
5
votes
2answers
309 views

Advice on Python Parser Generators

Hey guys, this is my first question here on Stack Overflow and I was wondering if I could ask the advice of people who know a bit more about Python and Parser Generators than I do. I've been given a ...
5
votes
3answers
382 views

When to use parser-generator, when is regex is enough?

I have not gotten into the field of formal languages in computer science yet, so maybe my question is silly. I am writing a simple NMEA parser in C++, and I have to choose: My first idea was to ...
5
votes
5answers
1k views

Help me find an appropriate ruby/python parser generator

The first parser generator I've worked with was Parse::RecDescent, and the guides/tutorials available for it were great, but the most useful feature it has was it's debugging tools, specifically the ...
4
votes
3answers
194 views

Porting Mathematica to Octave

I have to port a lot of files from Mathematica to Octave. I found a Lisp Mathematica parser from ~1991 but I am not really familiar with Lisp, so I was wondering if anyone has any experience with ...
4
votes
1answer
92 views

What's the %% for in Happy?

I'm building a parser with Happy and noticed this is the online documentation: Like yacc, we include %% here, for no real reason. %% There must be a reason though, even if it's trivial. ...
4
votes
3answers
139 views

Do production compilers use parser generators?

I've heard that "real compiler writers" roll their own handmade parser rather than using parser generators. I've also heard that parser generators don't cut it for real-world languages. Supposedly, ...
4
votes
3answers
101 views

Using external type declarations with OCamlyacc

I have a type expr in an expr.ml file. In parser.mly (OCamlyacc file), I define the expr rule and give the type : %start expr %type <expr> expr However, I get : File ...
4
votes
2answers
310 views

Abstract-syntax tree for subset of C

For teaching purpose we are building a javascript step by step interpreter for (a subset of) C code. Basically we have : int,float..., arrays, functions, for, while... no pointers. The javascript ...
4
votes
1answer
410 views

What are features of ANTLR that XText Does not provide?

I just came across very nice tool Xtext to creat DSL as well as IDE for there editing. I did some search on the web and found people saying it dows not provide all the features of ANTLR. I am using ...
4
votes
5answers
848 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 ...
4
votes
4answers
2k views

Can parser combinators be made efficient?

Around 6 years ago, I benchmarked my own parser combinators in OCaml and found that they were ~5× slower than the parser generators on offer at the time. I recently revisited this subject and ...
4
votes
3answers
504 views

parsing recursive structures in scala

I'm trying to contruct a parser in scala which can parse simple SQL-like strings. I've got the basics working and can parse something like: select id from users where name = "peter" and age = 30 ...
3
votes
2answers
108 views

General type parameter for nested lists

I'm trying to write a parser which should parse a Prolog list (for example [1,2,3,4]) into the corresponding Scala List. I programmed the parser with Scalas parsing combinators. My parser looks like ...
3
votes
2answers
125 views

Parsing with incomplete grammars

Are there any common solutions how to use incomplete grammars? In my case I just want to detect methods in Delphi (Pascal)-files, that means procedures and functions. The following first attempt is ...
3
votes
3answers
256 views

Parser Generator for Objective C?

I've been advised to use a Parser Generator to create a parser for my domain specific language. Ideally I'd like it to output an objective-C parser and take BNF input to describe the language. ...
3
votes
1answer
122 views

what type of parser is bison?

what type of parser is bison. is it a LALR(1) or LR(1) ?
3
votes
3answers
492 views

Parser Generators and Ragel… Making my own D Parser

I'm new to the world of compilers, and I recently heard about something called a parser generator. From what I (think) I've understood, parser generators take in a syntax file and output a source code ...
3
votes
1answer
339 views

Using Parse::RecDescent

I have the following input @Book{press, author = "Press, W. and Teutolsky, S. and Vetterling, W. and Flannery B.", title = "Numerical {R}ecipes in {C}: The {A}rt of {S}cientific ...
3
votes
1answer
468 views

ANTLR Parser with manual lexer

I'm migrating a C#-based programming language compiler from a manual lexer/parser to Antlr. Antlr has been giving me severe headaches because it usually mostly works, but then there are the small ...
3
votes
2answers
118 views

What goes in between { and } when writing BNF?

I'm having some trouble with BNF. I can't tell what seems to be the standard way of doing things (if there is one), and whether or not there are types like char or int or whatever already built in. ...
3
votes
1answer
604 views

Top-Down Parser want to have decent case example left-recursion in a 'Code'

Hello fellow stack over flow members. I'm studying for compiler class. I did understand Top-Down Parser should avoid left-recursion, and transform into right-recursion way. Questions are, a) am I ...
3
votes
3answers
322 views

Haskell Parsec and Unordered Properties

I am trying to use Parsec to parse something like this: property :: CharParser SomeObject property = do name parameters value return SomeObjectInstance { fill in records here } I am ...
3
votes
1answer
425 views

Packrat parsing vs. LALR parsing

A lot of websites states that packrat parsers can parse input in linear time. So at the first look they me be faster than LALR parser contructed by the tools yacc or bison. I wanted to know if the ...
3
votes
3answers
307 views

LALR Parser Generator Implementation Problem

I'm currently trying to implement a LALR parser generator as described in "compilers principles techniques and tools" (also called "dragon book"). A lot already works. The parser generator is ...
3
votes
2answers
160 views

Open source machine readable grammar for HTTP/1.1?

Is there an open source machine-readable grammar for HTTP/1.1 requests and responses? Specifically, i'm looking for a grammar that is accepted by one of the popular parser generators (e.g., ANTLR, ...

1 2 3