Tagged Questions

The computer program yacc is a parser generator developed by Stephen C. Johnson at AT&T for the Unix operating system.

learn more… | top users | synonyms

46
votes
4answers
8k views

Advantages of Antlr (versus say, lex/yacc/bison)

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 ...
20
votes
4answers
2k views

Is there a good Emacs mode or method for lex/flex/yacc/bison files?

Editing lex or yacc files with Emacs is a nuisance: if I use C mode the indenting goes wrong, and if I don't use C mode I can't use indenting. Does anyone have a trick, a method, or an editing mode to ...
20
votes
6answers
11k views

Excellent online tutorial for lex and yacc

Could somebody post a link to some excellent tutorials for lex and yacc?
17
votes
14answers
4k views

Good tools for creating a C/C++ parser/analyzer

What are some good tools for getting a quick start for parsing and analyzing C/C++ code? In particular, I'm looking for open source tools that handle the C/C++ preprocessor and language. Preferably, ...
14
votes
8answers
2k views

Is Yacc still used in the industry?

The software base I am developing for uses a signficant amount of yacc which I don't need to deal with. Some times I think it would be helpful in understanding some problems I find but most of the ...
12
votes
1answer
593 views

Integrating Bison/Flex/Yacc into XCode

Is there a simple way for integrating Bison/Flex/Yacc into XCode? I want to write my own language to be parsed, which interacts with my ObjC objects. But the tools will only take STDIN as input, and ...
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
3k views

String input to flex lexer

I want to create a read-eval-print loop using flex/bison parser. Trouble is, the flex generated lexer wants input of type FILE* and i would like it to be char*. Is there anyway to do this? One ...
10
votes
13answers
2k views

How much time would it take to write a C++ compiler using flex/yacc?

How much time would it take to write a C++ compiler using lex/yacc? Where can I get started with it?
9
votes
6answers
3k views

How to compile LEX/YACC files on Windows?

I'm having Lex and YACC files to parse my files (.l file and .y file) How to compile those files and how to make equivalent .c file for this Which tool i've to for this. I'm using windows 7 , i've ...
9
votes
5answers
3k views

Good parser generator (think lex/yacc or antlr) for .NET? Build time only?

Is there a good parser generator (think lex/yacc or antlr) for .NET? Any that have a license that would not scare lawyers? Lot’s of LGPL but I am working on embedded components and some organizations ...
9
votes
4answers
5k views

What is the difference between Flex/Lex and Yacc/Bison?

What is the difference between Flex & Lex and Yacc & Bison. I searched the Internet wildly and I didn't find any solid answer. Can I install pure Lex and Yacc on Ubuntu, or I can install only ...
9
votes
5answers
4k views

Where can I find standard BNF or YACC grammar for C++ language?

I'm trying to work on a kind of code generator to help unit-testing an legacy C/C++ blended project. I don't find any kind of independent tool can generate stub code from declaration. So I decide to ...
8
votes
1answer
472 views

Trying to build a C# grammar for bison/wisent

I've never done Bison or Wisent before. how can I get started? My real goal is to produce a working Wisent/Semantic grammar for C#, to allow C# to be edited in emacs with code-completion, and all ...
8
votes
3answers
1k views

Looking for a Java grammar in lex/yacc format

Does anyone know an online repository for lex/yacc format grammars? I'm looking for a Java grammar to make a quicky sourcecode converter. Thank you! edit: I'm preferably looking for lex/yacc because ...
8
votes
1answer
4k views

Simple Flex/Bison C++

I already looked for my answer but I didn't get any quick response for a simple example. I want to compile a flex/bison scanner+parser using g++ just because I want to use C++ classes to create AST ...
8
votes
4answers
838 views

Yacc/Jay grammar file for JavaScript?

I'm trying to find a grammar file for JavaScript for Yacc (preferably for Jay, but since Jay is a Yacc clone I should be fine, since I need to implement it on .NET).
8
votes
6answers
4k views

Lisp grammar in yacc

I am trying to build a Lisp grammar. Easy, right? Apparently not. I present these inputs and receive errors... ( 1 1) 23 23 23 ui ui This is the grammar... %% sexpr: atom ...
7
votes
2answers
217 views

How can I implement #include constructs with Flex and YACC?

During parsing, if I encounter a include token I want to instruct YACC to open the file specified as input and to begin parsing this. Once this parsing is finished, I want to instruct YACC to return ...
7
votes
2answers
886 views

Haskell parsing tools - yacc:lex :: happy:?

So, it seems like Happy is a robust replacement for yacc in Haskell. Is there an equally robust lexer generator to replace lex/flex?
6
votes
3answers
2k views

How to find shift/reduce conflict in this yacc file?

When I try to use yacc on the following file I get the error conflicts: 1 shift/reduce How can I find and fix the conflict? /* C-Minus BNF Grammar */ %token ELSE %token IF %token INT %token RETURN ...
6
votes
4answers
2k views

Yacc equivalent for Java

I'm working on a compiler design project in Java. Lexical analysis is done (using jflex) and I'm wondering which yacc-like tool would be best(most efficient, easiest to use, etc.) for doing ...
6
votes
3answers
1k views

Is there a good yacc/bison type LALR parser generator for .NET?

Is there a good yacc/bison type LALR parser generator for .NET ?
6
votes
1answer
336 views

Multiple YACC grammars in one program

How do I compile, link and call different YACC grammars using yyparse() in one program?
6
votes
2answers
2k views

Resolving reduce/reduce conflict in yacc/ocamlyacc

I'm trying to parse a grammar in ocamlyacc (pretty much the same as regular yacc) which supports function application with no operators (like in Ocaml or Haskell), and the normal assortment of binary ...
5
votes
4answers
248 views

Parsing source code

I need to parse the source code of different files, each written in a different language, and I would like to do this using C. To do that, I was thinking of using yacc / lex, but I find them very ...
5
votes
1answer
341 views

Building a C++ project in CodeBlocks/Eclipse that uses yacc and lex

I have the following makefile, which is working fine, to build my application. How can I configure an IDE (say, codeblocks, eclipse) to compile this. The C/C++ files associated with yacc are giving ...
5
votes
3answers
383 views

On ocamlyacc, function application grammar and precedence

I'm OCaml newbie and I'm trying to write a simple OCaml-like grammar, and I can't figure this out. My grammar allows something like this: let sub = fun x -> fun y -> x - y;; However, if I ...
5
votes
6answers
3k views

C grammar in GCC source code

I'm looking for the C grammar in GCC source code, more specifically for the grammar in the yacc/bison form.
5
votes
4answers
230 views

How do I get Bison/YACC to not recognize a command until it parses the whole string?

I have some bison grammar: input: /* empty */ | input command ; command: builtin | external ; builtin: CD { printf("Changing to home directory...\n"); } | CD ...
5
votes
2answers
1k views

What is the difference between lex/yacc and fslex/fsyacc?

I'm learning F# because I'd like to write a lexer and parser. I have a tiny bit of experience with this sort of processing but really need to learn it properly as well as F#. When learning the ...
5
votes
2answers
186 views

Yacc Grammar Debuggers: Are there any? Are they any good/help?

I've been helping augment a twenty-some year old proprietary language within my company. It is a large, Turing-complete language. Translating it to another grammar regime (such as Antlr) is not an ...
5
votes
2answers
350 views

How do I implement forward references in a compiler?

I'm creating a compiler with Lex and YACC (actually GNU Flex and Bison). The language allows unlimited forward references to any symbol (like C#). The problem is that it's impossible to parse the ...
5
votes
5answers
396 views

Most effective way to parse C-like definition strings?

I've got a set of function definitions written in a C-like language with some additional keywords that can be put before some arguments(the same way as "unsigned" or "register", for example) and I ...
4
votes
2answers
77 views

How to deal with variable references in yacc/bison (with ocaml)

I was wondering how to deal with variable references inside statements while writing grammars with ocamlyacc and ocamllex. The problem is that statements of the form var x = y + z var b = true | f; ...
4
votes
1answer
53 views

Emacs TAGS table is confused by #line directive in lex/yacc files

I am trying to generate TAGS tables using etags for a large software project. The TAGS file ends up having entries to non-existent files at top level instead of the existent ones in a sub-directory ...
4
votes
2answers
173 views

Semantic Phase of compiler

I am trying to make semantic phase for c compiler using lex and yacc. Right now the problem is if I have multiple errors in the c program, it stops after the 1st. What can I do?
4
votes
3answers
109 views

Can't figure out what is causing a shift/reduce errors in yacc

I'm working on a project in yacc and am getting a shift/reduce error but I can't figure out why I'm getting it. I've been looking through the y.output file but am not quite sure how to read it. My ...
4
votes
5answers
474 views

yacc/lex or hand-coding?

I am working on new programming language, but I was always puzzled by the fact that everyone is using yaxx/lex to parse the code, but I am not. My compiler (which is already working) is handcoded in ...
4
votes
4answers
610 views

What is the best way of preventing memory leaks in a yacc-based parser?

Yacc does not permit objects to be passed around. Because the %union can only contain POD types, complex objects must be new'd and passed around by pointer. If a syntax error occurs, the yacc parser ...
3
votes
2answers
69 views

YACC|BISON :How do I manipulate parse tree?

The goal of my application is to validate an sql code and generate,in the mean time, from that code a formatted one with some modification.For example this where clause : where e.student_name= ...
3
votes
1answer
89 views

Build compiler Object Oriented

I'm currently working on a project for my class. I'm building a compiler with Flex (lex) and Bison (YACC) and C. I have done just a little bit of semantic an syntax analysis but i have been thinking ...
3
votes
2answers
84 views

How to replace macros with a grammar-based parser?

I need a parser for an exotic programming language. I wrote a grammar for it and used a parser generator (PEGjs) to generate the parser. That works perfectly... except for one thing: macros (that ...
3
votes
1answer
98 views

assigning ASCII values to variables in bison

I want my parser to handle case like: a='A'; // a should be set with ASCII(A) i.e 65 My token declaration looks like : %union { double dval; char *symbol; } %token <symbol> SYMBOL_NAME ...
3
votes
3answers
171 views

Interfacing a Yacc/Bison Parser with a C++ program

This is not a duplicate of this question because the solution was not to use a parser! I have a Bison parser I can run by doing ./parser < file_to_parse. I want to call the Bison parser from ...
3
votes
1answer
57 views

single, double quotes, or tokens?

Tutorials on writing yacc code online use single quotes for semicolons, and other characters: ';' '+' '-' (etc) however when using: '<' or '>' I got errors until I changed it to double ...
3
votes
2answers
186 views

Lex and Yacc without Dynamic Memory Allocation

I'm in the process of designing software to run in an embedded environment where the use of dynamic memory is prohibited. Lex and Yacc are well suited for the application. Can I configure Lex and ...
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
239 views

Recovering error tokens in parsing (Lemon)

I'm using Lemon as a parser generator, its error handling is the same as yacc's and bison's if you don't know Lemon. Lemon has an option to define the error token in a set of rules in order to catch ...
3
votes
2answers
169 views

Utility to format a Bison/Yacc grammar file nicely?

Hello there: Do you folks know of any GNU/Linux utility to format a Bison grammar file, containing C code, nicely? I'm thinking of something along the lines of GNU Indent, but designed to beautify ...

1 2 3 4 5 8